Forum Moderators: open

Message Too Old, No Replies

Extra line space after closing FORM tag (</form>)

always struggled with this...

         

dataguy

12:09 pm on Aug 5, 2005 (gmt 0)

WebmasterWorld Senior Member 10+ Year Member



Can anyone tell me how to eliminate what appears to be an extra line feed after the closing form tag? (</form>).

I've had to struggle with this for years, and sometimes I would hide the tag in a table, which seems to fix the problem, but then it doesn't validate.

Thanks for your help!

BlobFisk

12:18 pm on Aug 5, 2005 (gmt 0)

WebmasterWorld Senior Member 10+ Year Member



You could try using some CSS:

form {
margin: 0;
padding: 0;
}

HTH

Robin_reala

12:18 pm on Aug 5, 2005 (gmt 0)

WebmasterWorld Senior Member 10+ Year Member



form {
padding: 0;
margin: 0;
}

?

encyclo

1:22 pm on Aug 5, 2005 (gmt 0)

WebmasterWorld Senior Member 10+ Year Member



You might want to set it as inline with the CSS too:

form {
display:inline;
}

dataguy

1:33 pm on Aug 5, 2005 (gmt 0)

WebmasterWorld Senior Member 10+ Year Member



Wow. Perfect. I should have asked a long time ago...

Thank you!