Hello,
Is there a way to keep the <form> from adding a line below?
Thanks for your help, Elbee
Hello,
Is there a way to keep the <form> from adding a line below?
Thanks for your help, Elbee
Hi there Elbee,
IE6 and IE7 appear to give the form element a default 20px top and bottom margin.
The other browsers that I tested - ( Firefox, Opera, Safari and IE8 ) - do not.
You may find it helpful to set all elements' default margin and padding values to zero in your style sheet by adding this...
...and then adding your own values when required.Code:* { padding:0; margin:0; }
Otherwise just add this...
cootheadCode:form { margin:0; }
Elbee (09-02-2010)
Bookmarks