当前位置: 代码迷 >> Web前端 >> 让table跟table中的TD在指定区域滚动
  详细解决方案

让table跟table中的TD在指定区域滚动

热度:216   发布时间:2013-10-30 12:56:22.0
让table和table中的TD在指定区域滚动
使用的属性如下:

<div style="width:100%; height:180px; overflow-y:scroll; position: relative;">
<table></table>
</div>

同理:
<td>
<div style="width:100%; height:180px; overflow-y:scroll; position: relative;"></div>
</td>
  相关解决方案