可以先总体设置右边距,然后再单独取消最后一个li元素的右边距
li { margin-right: 10px;}li:last-of-type { margin-right: initial;}
也可以直接给除了最后一个li以外的元素设置右边距
li:not(:last-of-type) { margin-right: 10px; }
欢迎分享,转载请注明来源:内存溢出
可以先总体设置右边距,然后再单独取消最后一个li元素的右边距
li { margin-right: 10px;}li:last-of-type { margin-right: initial;}
也可以直接给除了最后一个li以外的元素设置右边距
li:not(:last-of-type) { margin-right: 10px; }
欢迎分享,转载请注明来源:内存溢出
评论列表(0条)