Forum Moderators: open
If the form is just under the table tag, it leaves a blank line. When I put the form tag just before an inner table, it hides the line.
I also suspect that my form tags weren't aligned and IE just ignored it.
It would be nice if there was a "delete post" button for when I post a question that I shouldn't have......
I tend to go this route though.
<table><tr>
<td width=1><form></td>
<td width="100%">content</td>
<td width=1></form></td>
</tr></table>
-------------
IE puts a line break at the beginning of the form and NS puts one at the end. Do ya think they worked together to mess with heads??
-------------
IanKelley, watch your usage of 'margin-bottom', many browsers have trouble with it. (Opera,pre-NS6)
I imagine you panicking and flapping your hands in disgust at the sight of non-validating code; like Drew Barrymore in ET:). No offence, it's good that someone's fighting the corner for a better web.
You are of course correct, but it works in every browser I've tried (whereas a lot of the CSS fixes don't).
<table>
<tr><td>
<form>
<table>
<tr><td></td></tr>
</table>
<table>
<tr><td></td></tr>
</table>
</form>
</td></tr>
</table>
This allows the user to enter one column of the form with a tab downward instead of across.
it's a nicety.
That all said, did you know that closing tags </tr>'s are actually optional?
HTML 3.2:
The TR or table row element requires a start tag, but the
end tag can always be left out.