welldefined
Programmer
I found it will get a big empty space after following block:
<form...>
<table>
<tr><td>...</td></tr>
</table>
</form>
I then chage to this and found the empty space became much smaller, that is what I need:
<table>
<form...>
<tr><td>...</td></tr>
</form>
</table>
However, W3C validator said I should not do that, W3C validator like the first block.
Can you tell me how to make smaller space after the block and make W3C validator happy?
<form...>
<table>
<tr><td>...</td></tr>
</table>
</form>
I then chage to this and found the empty space became much smaller, that is what I need:
<table>
<form...>
<tr><td>...</td></tr>
</form>
</table>
However, W3C validator said I should not do that, W3C validator like the first block.
Can you tell me how to make smaller space after the block and make W3C validator happy?