写法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