HTML页面-div层滚动列表-写法

时间:2024-04-05 13:01:20

效果如下:HTML页面-div层滚动列表-写法

<!-- Start of table 5:列表内容标题栏 -->
<div style="WIDTH: 100%; HEIGHT: 255px; overflow-x:auto; overflow-y:hidden"> 层代码
<!--一定要有这个大table包含,如果不然不产生作用-->

<table width="160%" border="0" cellspacing="0" cellpadding="0">

<tr>
<td>
<!-- 具体table使用html代码-->
<table>
<tr>
<td>
标题
</td>
</tr>
<tr>
<td>内容</td>
</tr>
</table>
<!-- 具体table使用html代码-->
</td>
</tr>

</table>
</div>