.social-share li: first-child {
background-color: yellow;
}
以上不起作用? 第一个孩子不起作用?语法错误?
答案 0 :(得分:2)
请查看此演示:
.social-share li:first-child{background-color: yellow;}

<div class="social-share">
<ul>
<li>First</li>
<li>Second</li>
</ul>
</div>
&#13;
答案 1 :(得分:1)
删除:first-child
之前的空格......!
.social-share li:first-child {background-color: yellow;}
&#13;
<ul class="social-share">
<li>Item 1</li>
<li>Item 2</li>
<li>Item 3</li>
</ul>
&#13;
答案 2 :(得分:1)
li:
&amp;之间不应有空格键。 first child
它应该像
.social-share li:first-child {
background-color: yellow;
}