题解 | #CSS选择器——伪类选择器#
CSS选择器——伪类选择器
https://www.nowcoder.com/practice/d8a08991f6294e98b7b78597483ab2b8
既然要用到伪类选择器 个人感觉是这样
ul>li:nth-child(4){
background-color:rgb(255,0,0);
}
ul>li:nth-child(2){
background-color:rgb(255,0,0);
}