php – 为什么我没有滚动条?

前端之家收集整理的这篇文章主要介绍了php – 为什么我没有滚动条?前端之家小编觉得挺不错的,现在分享给大家,也给大家做个参考。
我正在制作一个 HTML,CSS和 PHP的网站,页面超出了屏幕,但浏览器没有提供滚动条(Mac上的Safari 5.0.6和Firefox 14.0.1).是因为我加入了PHP吗?但是在页面呈现之前不应该存在吗?

这是一个链接test website

我的PHP语法:

<div id="content">
        <div class="wrapper">
            <div id="home" class="alert">
                Welcome to always4free&copy;! To browse the classifieds,you must first either choose a location or have your location detected.
            </div>
            <?PHP include "res/pages/categories.PHP"; ?>
        </div>
    </div>
</div>

到底是怎么回事?

编辑:这是我的CSS:

body {
    background-image: url("http://always4free.org/site/images/bg.jpg");
    background-size: cover;
    font-family: "Mouse Memoirs",sans-serif;
}
.wrapper {
    margin: 0 auto;
    width: 850px;
}
#header {
    background: none repeat scroll 0 0 rgba(0,0.5);
    border-bottom: 3px solid green;
    Box-shadow: 0 2px 10px #888888;
    height: 50px;
    left: 0;
    position: fixed;
    top: 0;
    width: 100%;
}
#logo {
    color: rgba(255,255,0.7);
    float: left;
    font-family: "Wendy One",sans-serif;
    font-size: 30px;
    line-height: 50px;
    width: 250px;
}
#logo a:hover {
    color: #FFFFFF;
}
#nav {
    float: right;
    line-height: 50px;
    width: 600px;
}
#nav a:first-child {
    margin-left: 0;
}
#nav a:last-child {
    margin-right: 0;
}
#nav a:link,#nav a:visited {
    color: rgba(255,0.9);
    font-family: "Mouse Memoirs",sans-serif;
    letter-spacing: 1px;
    margin-left: 10px;
    margin-right: 10px;
}
#nav a:hover {
    border-bottom: 2px solid #FFFFFF;
    color: #FFFFFF;
    padding-bottom: 1px;
}
#nav a.detect {
    background-color: rgba(255,0.7);
    border: 1px solid rgba(255,0.4);
    border-radius: 2px 2px 2px 2px;
    color: rgba(0,0.7);
    padding: 5px;
}
#nav a.detect:hover {
    color: #000000;
}
#content {
    font-family: "Mouse Memoirs",sans-serif;
    letter-spacing: 1px;
    margin-top: 70px;
}
.page {
    background: none repeat scroll 0 0 rgba(0,0.5);
    border: 1px solid green;
    color: #FFFFFF;
    font-size: 20px;
    padding: 10px;
}
.alert {
    background: none repeat scroll 0 0 #AD2E1D;
    border: 1px solid #911E0F;
    color: white;
    font-size: 20px;
    padding: 10px;
    text-align: center;
}
#categories {
    margin-top: 20px;
}
#categories h2 {
    color: rgba(255,0.7);
    font-family: "Wendy One",sans-serif;
    font-size: 26px;
}
#categories a:link,#categories a:visited {
    background: none repeat scroll 0 0 white;
    color: black;
    padding: 3px;
}
#categories .block {
    line-height: 35px;
}
将id内容移动到标题div之外的div.

它会解决你的问题.

原文链接:https://www.f2er.com/php/137474.html

猜你在找的PHP相关文章