如何阻止内容进入页脚下方

时间:2016-02-07 14:41:17

标签: html css

嘿所有我已经为我的网站做了一个页脚,但是当我添加一个新容器并且说我将高度设置为500px它在底部的页脚上时我似乎遇到了问题请检查图像

enter image description here

我的页脚css

    .footer {
    height: 200px;
    border-top: 1px solid #d8d8d8;
    position: relative;
    bottom: 0;
}
.footer li {
    text-decoration: none;
    font-weight: bold;
    list-style-type: none;
    padding: 0;
    margin-left: 0;
    margin-top: 2px;
}
.footer h4 {
    font-weight: bold;
    margin-top: 30px;
}
* {
    margin: 0;
}
html, body {
    height: 100%;
}
.wrapper {
    min-height: 100%;
    height: auto !important;
    height: 100%;
    margin: 0 auto -4em;
}
.footer, .push {
    height: 200px;
    clear: both;
}
.more-info {
    border-top: 1px solid #d8d8d8;
    position: relative;
    bottom: 0;
}
.more-info p {
    font-weight: bold;
}

HTML

<div class="footer">
        <div class="container">
            <div class="row">
                <div class="col-sm-6">
                    <h4>Links</h4>
                    <li><a href="index.html">Home</a></li>
                    <li><a href="courses.html">Courses</a></li>
                    <li><a href="sign-up.html">Sign Up</a></li>
                    <li><a href="log-in.html">Log In</a></li>
                    <li><a href="about.html">About</a></li>
                </div>

                <div class="col-sm-6">
                    <h4>Social Media</h4>
                    <li><a href="#">Facebook</a></li>
                    <li><a href="#">Twitter</a></li>
                    <li><a href="#">Youtube</a></li>
                    <li><a href="#">Instagram</a></li>

                </div>
            </div>
        </div>
    </div>

1 个答案:

答案 0 :(得分:0)

我认为这是因为你的.wrapper上有一个负底边。您可以尝试将其更改为:

 .wrapper {
   min-height: 100%;
   height: auto !important;
  height: 100%;
  margin: 0 auto;
 }