[thelist] FORM tag puts ugly spaces in my layouts.

Kevin Greene (LMI) Kevin.Greene at eei.ericsson.se
Tue Apr 17 11:17:48 CDT 2001


<snip>
Try putting the <form> tags outside the <tr> tags.

Can you please be more specific?  I'm intrigued..
</snip>

I've had problems with spacing when you put the code this way 

<table>
	<tr>
		<form action = "blah" method = "post">
			<td></td>
			<td></td>
		</form>
	</tr>
</table>

But when you put it this way it tends to work. (probably won't validate but it can save a lot of time)

<table>
	<form action = "blah" method = "post">
		<tr>
			<td></td>
			<td></td>
		</tr>
	</form>
</table>

Regards,
Kevin




More information about the thelist mailing list