gpt4 book ai didi

css - div在体内居中

转载 作者:行者123 更新时间:2023-11-28 10:04:47 25 4
gpt4 key购买 nike

我有这个 html:

<body>

<div id="maindiv" class="rounded">
something written
</div>

</body>

使用这个 CSS:

body {
background-image: url('stjohnhusimages/green gradient.png');
background-repeat: no-repeat;
width:1024px;
height:1375px;
background-size: cover;
text-align:center;
}

#maindiv {
width:900px;
height:1275px;
margin-left: auto;
margin-right: auto;
margin-top: 40px;
background-color:#404853;
}

但是主 div 仍然向左对齐。想知道我做错了什么。

感谢您的帮助!

最佳答案

如果你对你的 body 施加约束,div 将只在其中居中。

宽度/高度应该在 div 上设置,而不是 body。

body {
background-image: url('stjohnhusimages/green gradient.png');
background-repeat: no-repeat;
background-size: cover;
text-align:center;
}

Demo

关于css - div在体内居中,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/14654038/

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