miraclemaker
Programmer
When I use the code
(which is itself in another table, code massively cropped down for clarity) I get a large space *after* the form finishes and still within the table cell that contains the form. The picture here:
will help you understand. (the gap is after the 'product status' pulldown.
I have found if I move the form tags so that they are immediately inside the <table> tags (rather than outside) like this:
the gap disappears and the form works perfectly. However this fails to vailidate through the w3c HTML validator becuase of course this is no longer valid HTML.
Anybody got any ideas how I can fix this?
Thanks.
Code:
...
<td><form method="post" name="form20" action="/one/two.php"><table border="0" cellpadding="0" cellspacing="0" width="183">
<tr>
<td>
...form elements...
</td>
</tr>
</table></form></td>
...
(which is itself in another table, code massively cropped down for clarity) I get a large space *after* the form finishes and still within the table cell that contains the form. The picture here:
will help you understand. (the gap is after the 'product status' pulldown.
I have found if I move the form tags so that they are immediately inside the <table> tags (rather than outside) like this:
Code:
<table>
<form>
<tr>
<td>
...form elements...
</td>
</tr>
</form>
</table>
the gap disappears and the form works perfectly. However this fails to vailidate through the w3c HTML validator becuase of course this is no longer valid HTML.
Anybody got any ideas how I can fix this?
Thanks.