无法滚动

时间:2012-08-16 12:23:23

标签: html css

无法在我的页面上滚动得足够多。

以下是1600x1200分辨率的完整页面: Here is full page on 1600x1200 resolution

以下是1366x768号决议的相同页面: Here is same page on resolution 1366x768

滚动条完全向下,即使有滚轮,也无法滚动。

为什么?怎么解决? 谢谢你的所有答案。

2 个答案:

答案 0 :(得分:3)

摆脱身体标签上的overflow:hidden。这隐藏了您需要的滚动条。

答案 1 :(得分:0)

所以问题的完整解决方案是:

    #body
    {
        overflow: auto;

        height: 100%;
        display: block;
        position: absolute;
        height:auto;
        bottom:0;
        top:0;
        left:0;
        right:0;
        margin-top: 104px;
        margin-left: 200px;
        margin-right: 90px;
        background: #f2f4f5;
    }