Wednesday, December 26, 2007

How can I eliminate the extra space after a form tag?

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

You can also use a CSS style sheet to affect all the forms on a page:

form

{

margin-bottom: 0 ;

}


No comments: