Vic*_*uiz 12
您将无法向表中添加滚动条,但可以将其添加到包含表的DIV中.
例如:
<div style="width: 400px; height: 200px; overflow: scroll;">
   <table>...</table>
</div>
如果你只想要一个水平滚动条,请使用overflow-x:auto; 然后设置宽度.
div
{
width: 300px;
overflow-x:auto;
overflow-y:hidden;
}
要添加滚动条使用溢出:
div {
    width: 100px;
    overflow: auto;
}
您还必须为表格添加宽度:
table {
    width: 300px;
}
| 归档时间: | 
 | 
| 查看次数: | 32045 次 | 
| 最近记录: |