Eliminating the Extra White Space after Forms

Q

How can I eliminate the extra space after a form?

✍: FYIcenter

A

HTML has no mechanism to control this. However, with CSS, you can set the margin-bottom of the form to 0. For example:

<form style="margin-bottom:0;" action=...>
...
</form>

2007-03-03, 5637👍, 0💬