我应该如何居中我的页面?
我的网站有两个部分。主体和侧边栏。正文为 6 英寸,侧边栏可能为 200 像素。如何将页面居中?那么左侧和右侧的空间相等吗?无论分辨率如何,它都应该居中。
严格使用 XHTML 1.0。应该适用于所有主要浏览器或至少 Firefox 和 Chrome。
I have two parts to my site. The main body and the sidebar. The body is 6in and sidebar will probably be 200px. How do i center my page? So there is equal space on the left and right side? It should center no matter the resolution.
Using XHTML 1.0 Strict. Should work on all major browsers or at least Firefox and chrome.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(4)
您可以将左右边距设置为自动:
这也非常便携,甚至可以在旧版 IE 上运行。
更新包装器、侧边栏和主栏需要有宽度。谷歌两列布局,这是一种非常标准的方法。
http://jsfiddle.net/aXLVv/1/ - 查看实际效果。
You can set margin to auto for left and right margins:
This is pretty portable too, even works on older IE versions.
Update wrapper, sidebar and main need to have widths. Google two column layout, that's a pretty standard way to do it.
http://jsfiddle.net/aXLVv/1/ - see it in action.
怎么样?
设置到最外面的容器
What about setting
to the outermost container.
我不认为 margin-left: auto;右边距:自动;会起作用的。您需要有一个全局包装器。
I dont think margin-left: auto; and margin-right: auto; will work. You need to have a global wrapper.