渲染以PC浏览器为中心,但未在iphone浏览器中对齐

时间:2012-10-15 08:37:38

标签: iphone html css

好吧,我有一个居中的div用作页脚,只需:<div id="bottom-footer">Powered by Coolname</div>和样式:

#bottom-footer {
width: 100%;
height: 20px;
position: absolute;
bottom: 1px;
text-align: center;
}

这在PC浏览器中呈现: enter image description here

但是当你尝试使用iphone时,它看起来像这样:

enter image description here

显然没有集中,我做错了什么?

2 个答案:

答案 0 :(得分:0)

看起来在包含body元素或div本身上有边距或填充。将其添加到样式表以重置浏览器的自然行为:

html {
margin:0px;
padding:0px;
}

body {
margin:0px;
padding:0px;
}

#bottom-footer {
width: 100%;
height: 20px;
position: absolute;
bottom: 1px;
text-align: center;
margin:0px;
padding:0px;
}

答案 1 :(得分:0)

删除width:100%

#bottom-footer {
height: 20px;
position: absolute;
bottom: 1px;
text-align: center;
}