The following code produces concentric rectangles in FX, Opera and Chrome, but at the top of the page. How can it
appear in the middle of the page ? How to make it the same in IE ? How can it be done with CSS, ignoring borders, cellpadding and cellspacing ?
<code>
<table align="center" valign="middle" width="50%" height="50%">
<tr>
<td align="center" valign="middle" bgColor="brown">
<table width="50%" height="50%">
<tr>
<td align="center" valign="middle" bgColor="red">
<table width="50%" height="50%">
<tr>
<td align="center" valign="middle" bgColor="yellow"></td>
</tr>
</table>
</td>
</tr>
</table>
</td>
</tr>
</table>
</code>
appear in the middle of the page ? How to make it the same in IE ? How can it be done with CSS, ignoring borders, cellpadding and cellspacing ?
<code>
<table align="center" valign="middle" width="50%" height="50%">
<tr>
<td align="center" valign="middle" bgColor="brown">
<table width="50%" height="50%">
<tr>
<td align="center" valign="middle" bgColor="red">
<table width="50%" height="50%">
<tr>
<td align="center" valign="middle" bgColor="yellow"></td>
</tr>
</table>
</td>
</tr>
</table>
</td>
</tr>
</table>
</code>