我正在尝试使列表中的所有其他列表项与特定类没有边距。我有什么方法可以使用:
ul>li:nth-child(even){
margin-right:0;
}
但事实是,当我只想要某个类的列表没有边距时,该代码会使每个列表的偶数项都没有余量。
我已尝试将类添加到规则中,如下所示:
.crpw ul>li:nth-child(even){
margin-right:0;
}
但这并不奏效。任何人都可以告诉我如何实现这个目标吗?
答案 0 :(得分:0)
由于您已选择.crpw
元素,因此之后无需使用ul
。如果您使用它,它将在ul
内寻找下一个.crpw
。
所以你只需要使用:
.crpw > li:nth-child(even) {
margin-right:0;
}