我试过这个;
@mixin text-format{
>p,>ul,>h1,>h2,>h3,>h4,>h5{
&:last-of-type{
background-color:green;
}
}
}
.text-body{
@include text-format;
}
纯CSS
.text-body > p:last-of-type,.text-body > ul:last-of-type,.text-body > h1:last-of-type,.text-body > h2:last-of-type,.text-body > h3:last-of-type,.text-body > h4:last-of-type,.text-body > h5:last-of-type {
background-color: green;
}
这将选择每个元素类型的最后一个实例,但不包括该元素类型.我只想选择div中的最后一个元素,无论它是什么,但是在选择器中指定的元素类型中.