针对练习题,“切换背景图像综合练习题”,为什么第二种写法不对?
写法1(正确) .slider li:nth-of-type(1) a{
background-color: #02646e;
}
写法2(错误) .slider a:nth-of-type(1){
background-color: #02646e;
}
写法1(正确) .slider li:nth-of-type(1) a{
background-color: #02646e;
}
写法2(错误) .slider a:nth-of-type(1){
background-color: #02646e;
}
2016-04-19
举报