假设我有一个固定宽度和高度的表格单元格......我的数据超出了单元格的固定尺寸......
<td width="500" height="300">lots of data that exceeds the dimensions</td>
答案 0 :(得分:20)
最简单的方法是添加500 x 300 div并将其overflow: auto
<td width="500" height="300">
<div style="width: 500px; height: 300px; overflow: auto">
lots of data that exceeds the dimensions
</div>
</td>