I have something to the effect of the below markup and I'm running into a problem with ie6 and ie7 where the td rides on top of the vertical scrollbar when I reduce the window size. Does anyone know why that is and how to fix it?
[HTML]
<HTML>
<HEAD></HEAD>
<FRAMESET>
<FRAME>
<HTML>
<BODY class="class1">
<DIV class="class2">
<DIV id="class3">
<TABLE class="class4" style="HEIGHT: 227px" cellSpacing="0" cellPadding="0" width="100%" border="0">
<TBODY>
<TR>
<TD class="class5">
....
</TD>
</TR>
</TBODY>
</TABLE>
</DIV>
</DIV>
</BODY>
</HTML>
</FRAME>
</FRAMESET>
</HTML>
[/HTML]
[HTML]
<HTML>
<HEAD></HEAD>
<FRAMESET>
<FRAME>
<HTML>
<BODY class="class1">
<DIV class="class2">
<DIV id="class3">
<TABLE class="class4" style="HEIGHT: 227px" cellSpacing="0" cellPadding="0" width="100%" border="0">
<TBODY>
<TR>
<TD class="class5">
....
</TD>
</TR>
</TBODY>
</TABLE>
</DIV>
</DIV>
</BODY>
</HTML>
</FRAME>
</FRAMESET>
</HTML>
[/HTML]
Comment