【发布时间】:2011-03-12 07:31:34
【问题描述】:
我有一个包含在 div 中的表格。 表格布局是固定的。 div 具有 css 属性“溢出:滚动”。 但是当我更改小于表格宽度的 div 时, 滚动条没有出现
【问题讨论】:
我有一个包含在 div 中的表格。 表格布局是固定的。 div 具有 css 属性“溢出:滚动”。 但是当我更改小于表格宽度的 div 时, 滚动条没有出现
【问题讨论】:
将某些width、height 指定为DIV,然后指定overflow:auto;
overflow:auto;
width:500px;
height:400px;
检查此代码
<style type="text/css">
.pqr{
overflow:auto;
width:500px;
height:400px;
}
</style>
<div class="pqr">
<table width="600px" border="1">
<tr>
<td>
Test
</td>
</tr>
</table>
</div>
【讨论】:
| 测试 |