html_code_clinic thread: Forms spacing
> i have to forms on top of each other and i want the spacind > that they have to be removed is there any way you can do this ??? Use CSS style properties. The default display style for a <FORM> element is 'block', so the browser inserts a line break after each closing </FORM> If you add a style attribute and tell thebrowser to display the form 'inline' it won't add the break and your forms will flow together. <FORM style="display:inline;"> ... </FORM> Brian ----@
|





