仅使用 CSS 居中内容?

发布于 2024-11-25 14:32:29 字数 553 浏览 0 评论 0原文

可能的重复:
如何轻松地将

我已经阅读了多种使用CSS 在页面上居中内容的方法。我不是在谈论文本,而是在谈论图像或容器等内容。

居中内容的最佳方式是什么?

设置框的宽度,然后使用类似 left: 50% 的值?

我读过很多方法,试图理解哪种方法真正效果最好,并且跨浏览器友好并且可以在旧版浏览器中工作,这确实令人困惑。

关于什么是真正最好和最有效的方法有什么想法吗?

谢谢!

Possible Duplicate:
How do you easily horizontally center a <div> using CSS?

I have read multiple ways for centering content on a page using CSS. I am not talking about text, I am talking about content like images or a container etc.

What is the best way for centering content?

Setting the width of the box then using something like left: 50%?

I have read many many ways and really it gets confusing trying to understand which method truly works the best and is cross-browser friendly and works in older browsers.

Any ideas on what is truly the best and most effective way?

Thanks!

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

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

发布评论

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

评论(1

豆芽 2024-12-02 14:32:29

将 div 居中:

<div class="pageContainer">
    The awesome content is here
    <div> the secret of life....</div>
    .... more content ....
</div>

Css:

body {
  width: 100%;
}
.pageContainer {
   width: 600px;
   margin: 0px auto;
}

这会将宽度为 600px 的 div 在页面上水平居中。

边距:0 自动;将左右边距设置为页面左侧和右侧剩余的任何像素。

例如,如果页面宽度为 800px,则左边距为 100px,右边距为 100px,将 600px 移动到页面中心

Centering a div:

<div class="pageContainer">
    The awesome content is here
    <div> the secret of life....</div>
    .... more content ....
</div>

The Css:

body {
  width: 100%;
}
.pageContainer {
   width: 600px;
   margin: 0px auto;
}

this will horizontally center the div of width 600px on the page.

the margin: 0 auto; sets the left and right margin to whatever pixel left on the left and right of the page.

forexample if the width of the page is 800px, the margin left will be 100px and the right also 100px, moving the 600px at the center of the page

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