尝试将我的网页居中

发布于 2024-12-06 20:50:19 字数 326 浏览 1 评论 0原文

可能的重复:
页面不会居中对齐

我正在尝试使用 asp.net 将我的网页居中。当我使用

标签时,它仅将内容占位符居中。但是当我使用 CSS 属性 margin: 0 auto 时,它不会执行任何操作。有没有办法让整个页面居中?

Possible Duplicate:
page will not align center

I'm trying to center my web page using asp.net. When I use the <center> tag it only centers the content placeholder. But when I use the CSS attribute margin: 0 auto, it doesn't do anything. Is there a way to center the whole page?

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

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

发布评论

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

评论(3

单身情人 2024-12-13 20:50:19

在你的CSS中:

body {
    text-align: center;
}

#container {
    width: 900px; /* or some other fixed-width value */
    margin: 0 auto;
    text-align: left; /* reset text-align */
}

编辑:我猜我也应该显示相关的标记......

...
<body>
    <div id="container">
        <!-- centered content here -->
    </div>
</body>
...

In your CSS:

body {
    text-align: center;
}

#container {
    width: 900px; /* or some other fixed-width value */
    margin: 0 auto;
    text-align: left; /* reset text-align */
}

Edit: guess I should probably show the associated markup as well...

...
<body>
    <div id="container">
        <!-- centered content here -->
    </div>
</body>
...
假扮的天使 2024-12-13 20:50:19

您需要将所有内容放在包装 div 中,并在该元素上设置宽度,以及 margin: 0 auto;

示例:

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

You need to have all your content with in a wrapping div, and have a set width on that element, along with margin: 0 auto;

Example:

#wrapper {
  width: 960px;
  margin: 0 auto;
}
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文