<div overflow="auto">
<table>
<tbody>
<tr>
<td>xx</td>
<td>oo</td>
...
</tr>
</tbody>
</table>
</div>
my scenario is that table has a lot of data to display and cannot wrap lines, so table can only use horizontal scroll bars.
because there is too much data, you have to pull it to the bottom every time to slide the scroll bar. Now you need to add a scroll bar to each piece of data. Is there any good way to achieve it?
-
Thank you