我在我的 css 中使用 .section-title h1 并将文本对齐到中心,但它不起作用但如果我只使用 h1 来对齐文本,它肯定会起作用。
<div id="section-title">
<h1>GET IN TOUCH</h1>
<p>Make sure to subscribe to this channel</p>
</div>
对于我尝试过的 CSS
h1.section-title {
text-align: center;
}
和
.section-title h1
{
text-align: center;
}