[thelist] How to decrease the height of the form table

aardvark roselli at earthlink.net
Sat Jun 23 08:26:58 CDT 2001


> From: "Navin Dhanuka" <navin_dhanuka at yahoo.com>
> 
> How do I decrease the height of the form table.?

well, based on your sample code...

you can keep the <form>s out of the table cell, which isn't 
technically correct HTML, but will render in all browsers in which 
i've tested it:

<table>
	<form>
 <tr>
  <td><input ...></td>
 </tr>
	</form>
</table>

or you can try adjusting the margin and padding with CSS:

<form style="margin-top:0px;padding-top:0px;">

experiment... decide which is the best for your audience...





More information about the thelist mailing list