14

我无法将页脚居中到页面底部。这是我的代码

footer {
background-color: #FFF;
position:fixed;
bottom: 0px;
width: 400px;
text-align: center;
}
<footer align="center">
    <p>March 25, 2</p>
</footer>
4

3 回答 3

20

只需将宽度设置为 100%

width: 100%;
于 2013-03-26T04:54:39.937 回答
5

Shabbir Lakdawala答案是您的选择之一,但将您的floated元素包含在您footer只需添加“div”包装器中

html

<div class="footerWrap">
    <div class="footer">
      <div class="footerContent">
        <p>Lorem Ipsum dolor</p>
      </div>     
    </div>
</div>

css

.footerWrap {
    width:100%;
    position:fixed;
    bottom: 0px;
}
.footer {
    width:400px;
    margin:auto;
}
.footerContent {
    float:left;
    width:100%;
    background-color:#555;
    padding:20px 0;
}
.footer p {float:left; width:100%; text-align:center; }

工作演示

于 2013-03-26T07:43:23.563 回答
3

或者您可以给您的页脚一个容器并应用此代码:

HTML:

<footer>
    <div class="footer">
    lorem ipsum dolor
    </div>
<footer>

CSS:

footer{
    bottom: 0;
    position: fixed;
    width: 100%;
}

.footer {
    background: blue;
    height: 100px;
    margin: auto;
    width: 400px;
    text-align:center;
    padding:10px;
    color:#ffffff;
}

链接到小提琴:http: //jsfiddle.net/qdVbR/174/

于 2013-03-26T05:48:40.657 回答