gpt4 book ai didi

css - Div 包装器未将所有页面内容居中

转载 作者:行者123 更新时间:2023-11-28 16:12:19 24 4
gpt4 key购买 nike

是什么导致以下内容没有居中整个页面?

  <html>

<style type="text/css">
.col {
width: 250px;
float: left
}
</style>

<body>

<div style="width=500px;margin:0 auto;">

<p style="float:left;text-align:right;width:120px;line-height: 26px;">

</p>

<p style="float:left;width:150px;margin-left:20px;">

</p>

<div style="clear:both;"></div>

<div class="col">
<p>

</p>
</div>

<div class="col">
<p>

</p>
</div>

</div>

</body>

</html>

最佳答案

应该是 width:500px 而不是 width=500px

您正在使用内联样式,这是一种不好的做法。

这样写:

.wrapper{width:500px;margin:0 auto;background:#eee;}

Fiddle here.

关于css - Div 包装器未将所有页面内容居中,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/19920784/

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