如何删除水平滚动条填充(Firefox)?

时间:2009-12-10 23:20:57

标签: html css firefox

要使用静态标题创建表格,我添加了以下内容:

tbody.scrollContent {   
    height: 300px;
    overflow:auto;

} 

html tbody标签有类:

<tbody class="scrollContent">  

效果很好,但它添加了一个水平滚动来补偿垂直滚动条的宽度。我希望我的regualr表只有添加垂直滚动。我尝试了下面的链接和其他改变填充和表的所有不同宽度(td,thead,th,tr等)的东西。它不会消失!任何帮助都是非常有用的 谢谢。

This one
and this answer seems like they avoided the question?
and this one

1 个答案:

答案 0 :(得分:1)

IE5 + / Win,Firefox 1.5+(Mozilla 1.8+)和Safari 3 +支持overflow-x和overflow-y。

tbody.scrollContent {width:300px;height:300px;overflow-x:auto;overflow-y:hidden;}

让我知道它是怎么回事