I'm trying to use style="overflow:scroll" to make a table with scrollable rows. But the scrollable area appears at the top right before the heading row. Can anybody tell me what am I doing wrong here?
TIA
Medic
Code:
<table border=1>
<tr>
<td>&nbsp</td>
<td align='center'>Item Description</td>
<td align='center'>Quantity</td>
</tr>
<div style="overflow:scroll;width:500px;height:100px;">
<tr>
<td>
<input type="checkbox" name='cbx' value=Item1>
</td>
<td>
First item
</td>
<td align='right'>
<input type='text' name='qty1' size=2 maxlength=2 value=0>
</td>
</tr>
<tr>
<td>
<input type="checkbox" name='cbx' value=Item2>
</td>
<td>
Second item
</td>
<td align='right'>
<input type='text' name='qty2' size=2 maxlength=2 value=0>
</td>
</tr>
</div>
</table>
TIA
Medic