我有以下代码:
<div class="wrapper">
<div class="location info">
<h3>Location</h3>
<h3>should be no stlye</h3>
</div>
<div class="skills info">
<h3>Skills</h3>
<h3>should be no stlye</h3>
</div>
</div>
我正在尝试h3
在信息类之后设置第一个元素的样式。我认为这应该可行,但它没有:
.info:first-child {
color: color: rgb(200,50,50);
}
为什么这不起作用?我应该如何设置 . 信息而不在 html 中添加额外的标记?