HTML - 在表格的单元格中启用滚动

时间:2010-08-21 13:03:02

标签: html scroll html-table cell

假设我有一个固定宽度和高度的表格单元格......我的数据超出了单元格的固定尺寸......

<td width="500" height="300">lots of data that exceeds the dimensions</td>
  • 我可以在单元格中启用滚动此数据....
  • 如果不是什么解决方案..我只有 500 x 300 空间

1 个答案:

答案 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>