When I close my form (</form) I get a new line after it. Is there anyway to close it without having a new line?
It looks like I placed a <br /> after the form closed....
Closing Form without gap
Started by
Guest_NeedHelp_*
, Feb 12 2007 04:12 PM
1 reply to this topic
#1
Guest_NeedHelp_*
Posted 12 February 2007 - 04:12 PM
Guest_NeedHelp_*
|
|
|
#2
Posted 15 February 2007 - 02:14 PM
Web Authoring FAQ: HTML Forms (WDG)
Quote
10.4. 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:
<form style="margin-bottom:0;" action=...>
You can also use a CSS style sheet to affect all the forms on a page:
form { margin-bottom: 0 ; }
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=...>
You can also use a CSS style sheet to affect all the forms on a page:
form { margin-bottom: 0 ; }


Sign In
Create Account

Back to top











