gpt4 book ai didi

css - 将 HTML 中的 DIV 中的内容居中

转载 作者:行者123 更新时间:2023-11-28 13:29:05 25 4
gpt4 key购买 nike

这是一个常见的请求。但是,我要疯了。

    <style type="text/css">
html, body { height: 100%; margin:0px; padding:0px; }
#content { margin-left: 50%; margin-right: 50%; width:900px; }
</style>

...

<body style="min-height:100%; height:100%; position:relative;">
<header style="min-height:200px;">
<div style="height:50px; background:url(http://www.mydomain.com/images/bg.gif) repeat-x;">&nbsp;</div>
<div style="height:300px; background:url(http://www.mydomain.com/images/bg2.jpg) repeat;">
<div class="content" style="height:300px; background:url(http://www.mydomain.com/images/masthead-back.jpg) no-repeat;">
<img alt="Hello" src="http://www.mydomain.com/images/logo.png" />
Welcome.
</div>
</div>

<div id="nav">
<ul class="navs">
<li><a href="Main.aspx">Home</a></li>
<li><a href="ContactUs.aspx">Contact</a></li>
<li><a href="AboutUs.aspx">About Us</a></li>
</ul>
</div>
</div>
</header>

<article class="content" style="padding-bottom:60px;">
This is the main content
</article>

<footer style="position:absolute; bottom:0px; width:100%; height:60px; background-color:black;">
<div class="content">
<a href='#'>Privacy</a>&nbsp;|&nbsp;<a href='#'>Terms of use</a>
</div>
</footer>
</body>

我希望我的页眉、文章和页脚元素在正文中居中。但是,我希望页眉、文章和页脚中的内容左对齐。我做错了什么,目前一切都只是左对齐。但是,它不在屏幕中央。

最佳答案

您需要一个带有此 CSS 的包装器 DIV:

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

Working DEMO

关于css - 将 HTML 中的 DIV 中的内容居中,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/13768071/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com