滚动条未显示在网页中

aus*_*tin 5 html css

我帮助一个网站的朋友,当我调整浏览器窗口的大小时,右侧的滚动条没有显示出来.是否有解决方法或解决方法?

这是我工作的网站页面

固定

Šim*_*das 6

您的整个网页都包含在ID为"样式"的DIV中,如下所示:

<body>
    <div id="style">
        your web-page
    <div>
</body>
Run Code Online (Sandbox Code Playgroud)

这个DIV的CSS是:

#style {
    background: url(http://upupandfly.com/envie/images/bg_style.PNG) no-repeat;
    left: 0px;
    min-height: 100%;
    min-width: 100%;
    position: fixed;
    top: 0px;
}
Run Code Online (Sandbox Code Playgroud)

这个CSS导致了这个问题.你必须要么摆脱固定的定位,要么只是试图删除那个DIV ......