I have the following code:
The 100% attribute of the tr in the nested table isn't of the td which contains it, but instead it takes 100% of the screen. Why is this? In IE, when I use this, it's 100% of the td which it's sitting in, but in opera it's not. Why?
Code:
<table width="550">
<tr><td>Items</td></tr>
<tr><td>
<table>
<tr width="100%"><td>Item One</td></tr>
<tr width="100%"><td>Item Two</td></tr>
<tr width="100%"><td>Item Three</td></tr>
</table>
</td></tr>
</table>