我有以下css来获取最后四个
:nth-last-child(-n+4){border-bottom: none;}
它将结果返回给我:
在此,所有最后四个孩子都没有边界
但是,如果最后一项是3的倍数,则它会到达前一行。
我需要的是:
答案 0 :(得分:1)
这会使一些非常复杂的选择器与here找到的选择器不同,但可以这样做:
:first-child:nth-last-child(4n) ~ :nth-last-child(-n+4),
:first-child:nth-last-child(4n+3) ~ :nth-last-child(-n+3),
:first-child:nth-last-child(4n+2) ~ :nth-last-child(-n+2) {
border-bottom: none;
}
答案 1 :(得分:0)
而不是使用边框底部,
我认为你应该改为边界顶部,它适合你的情况。