如何将wrapper-div居中而不是内容居中

发布于 2024-12-24 16:46:54 字数 587 浏览 0 评论 0原文

我希望我的页面始终在浏览器中居中,而不影响内容(就像align-text: center; 那样)。我想将我的包装器 div 居中。我该怎么做?

简化的现有页面:

<div id="wrapper">       
    <div id="header">
        Music Heaven
    </div>
    <div id="topmeny">             
    </div>
    <div id="menu">        
    </div>        
    <div id="content">                  
    </div>           
    <div id="bottom">
        SiteAdmin
    </div>
</div>

整个小提琴: http://jsfiddle.net/EndQb/

I want my page to always be centered in the browser without affecting the content( like align-text: center; does). I want to center my wrapper-div.. How do I do this?

Simplifed existing page:

<div id="wrapper">       
    <div id="header">
        Music Heaven
    </div>
    <div id="topmeny">             
    </div>
    <div id="menu">        
    </div>        
    <div id="content">                  
    </div>           
    <div id="bottom">
        SiteAdmin
    </div>
</div>

Entire fiddle: http://jsfiddle.net/EndQb/

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

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

发布评论

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

评论(3

花之痕靓丽 2024-12-31 16:46:54
 #wrapper {
     width: ...
     margin: 0 auto;
 }

无需设置文本对齐

 #wrapper {
     width: ...
     margin: 0 auto;
 }

no need to set text-align

阳光下的泡沫是彩色的 2024-12-31 16:46:54

设置类似于包装 div 的样式。

#wrapper {

width: 841px;
margin: 0 auto;

这样,

包装器 div 将始终根据屏幕宽度居中。我希望它有帮助。

Set your style something like for the wrapper div.

#wrapper {

width: 841px;
margin: 0 auto;

}

In this way the wrapper div will always be centered according to your screen width. I hope it helps.

三生殊途 2024-12-31 16:46:54

您可以像 CSS 中那样设置包装器 div 的 margin 属性

#wrapper { margin:20px auto } 

you can set the margin property for the wrapper div like following in CSS

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