Wrox Home  
Search P2P Archive for: Go

  Return to Index  

html_code_clinic thread: Forms spacing


Message #1 by athanatos_au@h... on Wed, 2 Oct 2002 01:57:39
> 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
----@

  Return to Index