gpt4 book ai didi

css - 无法将 div 内的 p 与边距 0 auto 对齐

转载 作者:行者123 更新时间:2023-11-28 07:38:42 24 4
gpt4 key购买 nike

我不知道发生了什么,但我无法对齐 <p>div 里面与 margin:0 auto;我不明白哪里出了问题或遗漏了什么,这是代码:

<div class="test">
<p>Text that has to be centered</p>
</div>

这是CSS

 .test
{
width: 100%;
margin: 0 auto;
max-width: 600px;
text-align:center;
background-color: #ececec;
}
.test p
{
display:inline-block;
}

有了这个,文本在 div 的中心移动了一点点,但它没有完全居中

最佳答案

 .test p {
text-align: center;
}

这就是你所需要的。

如果您将 block 元素居中,则需要 margin:auto

关于css - 无法将 div 内的 p 与边距 0 auto 对齐,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/31071420/

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