使用nth-child在div选择中标记

时间:2016-03-01 08:09:35

标签: javascript jquery html css css3

我已阅读CSS3 :nth-child() Selector我做了sample

HTML

<body>
<div> <label>dsdf</label></div>
<div>seconddiv</div>
</body>

CSS

label.nth-child(1){
    background: #ff0000;
}

为什么标签的背景不是红色?

1 个答案:

答案 0 :(得分:4)

nth-child()伪选择器需要:而不是.

label:nth-child(1){
    background: #ff0000;
}