我应该如何居中我的页面?

发布于 2024-09-06 06:38:31 字数 141 浏览 6 评论 0原文

我的网站有两个部分。主体和侧边栏。正文为 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 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(4

白鸥掠海 2024-09-13 06:38:31

您可以将左右边距设置为自动:

<div id="wrapper">
  <div id="sidebar"></div>
  <div id="main"></div>
</div>

#sidebar {
    float:left;
    width: 50px;
}
#main {
    width: 150px;
    float:left;
     background-color: yellow;
}
#wrapper {
  margin-left: auto;
  margin-right: auto;
  width: 200px;
}

这也非常便携,甚至可以在旧版 IE 上运行。

更新包装器、侧边栏和主栏需要有宽度。谷歌两列布局,这是一种非常标准的方法。

http://jsfiddle.net/aXLVv/1/ - 查看实际效果。

You can set margin to auto for left and right margins:

<div id="wrapper">
  <div id="sidebar"></div>
  <div id="main"></div>
</div>

#sidebar {
    float:left;
    width: 50px;
}
#main {
    width: 150px;
    float:left;
     background-color: yellow;
}
#wrapper {
  margin-left: auto;
  margin-right: auto;
  width: 200px;
}

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.

羅雙樹 2024-09-13 06:38:31

怎么样?

margin: 0px auto;

设置到最外面的容器

<div id="wrapper">
    <div id="side"></div>
    <div id="main"></div>
</div>

#wrapper { margin: 0 auto; width: 800px; }

What about setting

margin: 0px auto;

to the outermost container.

<div id="wrapper">
    <div id="side"></div>
    <div id="main"></div>
</div>

#wrapper { margin: 0 auto; width: 800px; }
蘸点软妹酱 2024-09-13 06:38:31

我不认为 margin-left: auto;右边距:自动;会起作用的。您需要有一个全局包装器。

I dont think margin-left: auto; and margin-right: auto; will work. You need to have a global wrapper.

只怪假的太真实 2024-09-13 06:38:31
body {
    margin-left:  auto;
    margin-right: auto;
}
body {
    margin-left:  auto;
    margin-right: auto;
}
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文