gpt4 book ai didi

css - 嵌套 :after of :last-child with LESS

转载 作者:技术小花猫 更新时间:2023-10-29 10:28:13 27 4
gpt4 key购买 nike

使用 LESS 我需要删除元素的 :last-child 中的 :after 属性。

li {
&:after {
content: '/';
}
&:last-child {
&:after {
content: '';
}
}
}

这显然不是正确的嵌套 - 我错过了什么?

最佳答案

它在我看来是正确的,但如果它不起作用,那么请尝试不要嵌套第二个 :after:

li {
&:after {
content: '/';
}
&:last-child:after {
content: '';
}
}

如果您的意思是 :after 伪元素仍然为最后一个子元素显示,那么您一定要将 content: ''; 更改为 content: none; 代替。空字符串仍会导致生成空框,而 none 生成框。

关于css - 嵌套 :after of :last-child with LESS,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/11969075/

27 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com