首页 诗词 字典 板报 句子 名言 友答 励志 学校 网站地图
当前位置: 首页 > 教程频道 > 网站开发 > Web前端 >

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

2013-10-30 
让table和table中的TD在指定区域滚动使用的属性如下:div stylewidth:100% height:180px overflow-y:s

让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>

热点排行