wxss怎样去掉最后一项的下边框呢?
发布于 5 年前 作者 yinxia 430 次浏览 来自 官方Issues

我在购物车中循环列出商品,每一项的下面有一个border,怎样设置wxss去掉最后一项的下边框呢?

.pro:last-child{
    border-bottom: none;   //不管用
}
1 回复
.li:nth-last-child(1){
border-bottom:0
}
回到顶部