如果表格的内容长于我的允许大小,其余部分将被隐藏。出于某种原因,当我使用引导程序时,它不会隐藏溢出
我的 html
<div id="wrapper">
<table class="tabel_basisgegevens" border="5">
<tr><td>1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20</td></tr>
</table>
</div>
我的 CSS
.tabel_basisgegevens{
height:30px;
width: 1170px;
color:white;
background:red;
}
#wrapper {
position:absolute;
border:1px;
border-color:blue;
width: 200px;
overflow: hidden;
}
当您从“外部资源”中删除引导程序时,它工作正常。知道如何解决这个问题吗?在 Chrome 上运行良好,但在 Firefox 22.0 上运行良好。
我的 alert() 不会提醒表格的宽度为 1170,而是提醒 div 的宽度。