The following works correctly in Mozilla, but has a very bizarre
interpretation in IE6 (standards compliant mode)--anyone know how to
achieve something equivalent in IE6?
Mozilla code--this causes Mozilla to display the header row followed by the
body rows in a 100px box with a scrollbar on the right (below the header)
<table>
<thead>
<tr><td>Column</td></tr>
</thead>
<tbody style="overflow: scroll; height: 100px">
<tr><td>some data</td></tr>
<tr><td>some data</td></tr>
<tr><td>some data</td></tr>
<tr><td>some data</td></tr>
<!-- etc... -->
</tbody>
</table>
Thanks,
jeff
Try using TH as the cell tag in THEAD.
PLEASE IF SOMEONE HAS DONE THAT ALREADY, help me out please...
"Jeff Wishnie" <jeff> wrote in message
news:Xns92D2A00812F2B...@207.46.230.185...