如何将wrapper-div居中而不是内容居中
我希望我的页面始终在浏览器中居中,而不影响内容(就像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 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(3)
无需设置文本对齐
no need to set text-align
设置类似于包装 div 的样式。
这样,
包装器 div 将始终根据屏幕宽度居中。我希望它有帮助。
Set your style something like for the wrapper div.
}
In this way the wrapper div will always be centered according to your screen width. I hope it helps.
您可以像 CSS 中那样设置包装器 div 的 margin 属性
you can set the margin property for the wrapper div like following in CSS