我主要是iPhone开发人员,我对CSS有点垃圾,我正在尝试为我的应用程序制作一个网页。
我想让我的页脚具有以下属性:
我自己可以做的所有其他造型,只是位置造型,我觉得很难。
有人可以向我解释如何在CSS中执行此操作。
答案 0 :(得分:11)
footer {
width: 640px;
margin: 0% -320px;
position: fixed;
left: 50%;
bottom: 0%;
}
大量文字示例:http://jsbin.com/imisig/4
答案 1 :(得分:1)
将页脚HTML放入<div id="footer">
。 CSS就是这样的:
#footer {
width: 640px;
position: fixed;
bottom: 0px;
left: 50%;
margin-left: -320px;
}
解释
width
属性将宽度设置为640px
position: fixed
将使其滚动页面bottom: 0px
将其固定在页面底部(距离底部= 0px)left: 50%
将div
的左侧放在页面的中心margin-left: -320px
- 现在我们必须将它从左侧移动320px以使其居中