底部滚动器出现在Firefox中

时间:2012-05-24 21:31:50

标签: html css firefox layout

我的网站上的所有内容都显示正常,但在Firefox中会出现一个底部滚动条。我看过css,找不到任何太宽或边缘推到右边的东西。有关做什么的任何建议。该网站为eagleview.it

2 个答案:

答案 0 :(得分:1)

我认为将容器上的overflow: auto更改为overflow-x: hidden可以解决问题。我是用Firebug做的,它对我有用。

.container {
    background-color: #D5D5D5;
    bottom: 0;
    left: 0;
    overflow-x: hidden;
    position: fixed;
    right: 0;
    top: 0;
    width: 100%;
}

答案 1 :(得分:0)

尝试在容器DIV上设置overflow-x:hidden;

此方法可让您的页面继续垂直滚动。