gpt4 book ai didi

css - 我可以合并 :last-child with * in css or sass? 吗

转载 作者:太空宇宙 更新时间:2023-11-04 02:01:45 24 4
gpt4 key购买 nike

这是我当前的代码:

.loken5 *
padding-right: 5px
.loken5:last-child
padding: 0

在 SASS 中有什么方法可以只使用 1 个“.loken5”标签吗? (目的是为了节省空间)。谢谢:)

最佳答案

萨斯:

.loken5 
&:last-child
padding: 0
*
padding-right: 5px

科学:

.loken5 {
&:last-child {
padding: 0;
}
* {
padding-right: 5px;
}
}

如果你想要.loken5 *:last-child:

.loken5 
*
padding-right: 5px
&:last-child
padding: 0

结帐 this article如果您想了解更多关于 & (SASS & 符号)

关于css - 我可以合并 :last-child with * in css or sass? 吗,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/41639487/

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