I am trying to have table having width of size of screen and overflow should be scroll bar rather then whole page gets scroll bar.
Currently following code generates the scroll bar for the whole page rather then scroll bar only for table.
any help is appreciated.
I have table which generates dynamic length
<table width="100%" style="overflow:none">
<tr>
for 1 ... n
<td></td>
</tr>
</table>
end for