我无法将页脚居中到页面底部。这是我的代码
footer {
background-color: #FFF;
position:fixed;
bottom: 0px;
width: 400px;
text-align: center;
}
<footer align="center">
<p>March 25, 2</p>
</footer>
只需将宽度设置为 100%
width: 100%;
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; }
工作演示
或者您可以给您的页脚一个容器并应用此代码:
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/