html css 包装器在 iphone safari 中未居中对齐
我已经按照上面的链接构建了一个网站,包装器中心对齐在 PC/Mac 浏览器中正确显示。然而,在iphone safari中运行时,它是左对齐的,而不是居中对齐的。
包装器代码是:
#wrapper {
width: 939px;
background-color: #fff;
margin: 40px auto 5px auto;
padding-bottom: 50px;
}
有什么想法吗?
谢谢。
should be center-aligned website
I have built a website as above link, with wrapper center aligned properly in PC/Mac browsers. However, when running in iphone safari, it is left aligned, but not center aligned.
the wrapper code is:
#wrapper {
width: 939px;
background-color: #fff;
margin: 40px auto 5px auto;
padding-bottom: 50px;
}
Any ideas on it?
Thanks.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(4)
你尝试过吗:
have you tryd:
迷你黑客,但如果你将元内容宽度设置为最宽的居中 div,它会强制 iPhone 屏幕变得那么宽,并且不会弄乱居中的 div。
Mini hack, but if you set meta content width to the widest centered div it forces the iPhone screen to be that wide and doesn't mess the div centering up.
应该做。我不知道你为什么需要边距顶部。?提供的链接似乎不起作用。
Should do it. I dont know why you need the margin-top.? The provided link doesn't seem to work.
如果您只需要支持 iPhone Safari 或 CSS3 兼容浏览器,这里有一个优雅的方法: http://www.html5rocks.com/en/tutorials/flexbox/quick/#toc-center
If you only need to support iPhone Safari or CSS3 compatible browsers, here's an elegant approach: http://www.html5rocks.com/en/tutorials/flexbox/quick/#toc-center