cqdzdml
2016-04-19 00:52
写法1(正确) .slider li:nth-of-type(1) a{
background-color: #02646e;
}
写法2(错误) .slider a:nth-of-type(1){
background-color: #02646e;
}
对的。。
伪类元素接链接是有条件限制的
知道原因了,因为各a不是兄弟关系!!!!!!!!而li是,也可写成li:nth-of-type(1) a
十天精通CSS3
242553 学习 · 2623 问题
相似问题