Forum Moderators: not2easy
However, what happens in IE 6.0 is the block of text appears at the top of the browser above my absolutely positioned table when in the code it comes after the table!
Because the table could vary in height depending on what is in it, I can't absolutely position the block of text.
What am I doing wrong or missing? Here is my code:
<html><head>
<STYLE type="text/css">
body {margin: 0;
background: #E9E0AA;}
td{width: 50%}
.maintable { position: absolute;
top: 126px;
left: -2px;
border-style: solid;
width: 100%}
.test {color: white;
font-size: 14;
background-color: #826AA9;
font-family: arial}
</style>
</head>
<table class="maintable">
<tr>
<td>Test test</td>
<td>Test test</td>
</tr>
<tr>
<td>Test test</td>
<td>Test test</td>
</tr>
</table>
<p class="test">Test Test</P>
</html>