我已阅读CSS3 :nth-child() Selector我做了sample
HTML
<body>
<div> <label>dsdf</label></div>
<div>seconddiv</div>
</body>
CSS
label.nth-child(1){
background: #ff0000;
}
为什么标签的背景不是红色?
答案 0 :(得分:4)
nth-child()
伪选择器需要:
而不是.
。
label:nth-child(1){
background: #ff0000;
}