Can there be a table inside a tag?For example:
<a href="javascript:void(0)" style="display:block">
<table>
<tr>
<td></td>
</tr>
</table>
</a>
I tried the previous code. It’s working fine in Google Chrome, but it’s not working in Firefox.
The draft specification allows it so long as you could put a table where you put the anchor (it has a transparent content model)…
…but HTML 4 does not (so you may have browser support problems).