2

我有一个带有容器的布局,然后在该容器内是内容的另一个 div。我已经设置好了,如果一个表比容器大,就会有一个滚动条。

但是,许多表格都很长,所以为了到达那个水平滚动条,您必须一直向下滚动到页面底部 向右滚动然后向上滚动到页面顶部才能看到信息。

有没有办法让 div 的水平滚动条处于默认/主要水平滚动条位置?

body    {
    height: 100%;
    width: 100%;
    background: #e8d7b5;
    margin:0px;
    padding:0px 0px 0px 0px;
    font-family: Arial, Helvetica, Geneva, sans-serif;
    _text-align: center;
    overflow:hidden;
}
#bg {
    z-index: -999;
    min-height: 100%;
    min-width: 1024px;
    width: 100%;
    height: auto;
    position: absolute;
    top: 0;
    left: 0;
}

div {
    border:none;
}
a   {
    color:#000000;
}
a:hover {
    color: #B89626;
}
li  {
    list-style-image: url(Bullet.gif);
}
#container {
    position: relative;
    width: 97%;
    min-height: 700px;
    overflow: auto;
    *height: 700px;
    margin: 0px auto;
    _text-align: left;
    padding: 0px 7px 7px 7px;
    background: #ffffff;
    }

#content {
    width: 99%;
    overflow-x: auto;

}
.navigation {
    background: #003b5b;
    border:3px;
    padding: 10px 10px 0px;
    border-color: #011d2d;
    width:100%;
    height: 30px;
    }
.standardtab {
    background: #011D2D;
    padding-left: 3px;
    padding-right: 3px;
    height: 25px;
}
.nonstandardtab {
    background: #0D4664;
    padding-left: 3px;
    padding-right: 3px;
    height: 25px;
}

有我的CSS。我有一个容器,然后是我的内容的 div,它具有水平滚动。我需要内容的滚动条作为主滚动条。

4

2 回答 2

0

在容器上设置一个高度并溢出:隐藏;在 body 上删除默认的 body 滚动条。

于 2012-09-24T15:50:50.980 回答
0

为什么不将表格的高度固定为页面/容器的高度并包含垂直滚动条。所以你可以在屏幕上看到水平滚动条,而不是滚动到表格底部然后到达水平滚动条。

不能完全解决您的问题,但可能是另一种选择。

于 2012-09-27T09:39:41.820 回答