我对第 nth-of-type(odd):before 和 first-child:before 有疑问,我需要禁用 :before 第一个“li”元素中的内容。 问题是css不会对第一个孩子做出反应:之前..
PS我正在使用LESS
所以,有一个代码:
li {
&:first-child {
&:before {
content:none;
}
}
&:nth-of-type(odd) {
&:before {
content:'\b7';
margin:0 8px 0 5px;
}
}
}