gpt4 book ai didi

css - sass - 分组选择器

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

我有这个 sass 代码:

.navbar-default .navbar-nav > li > a:hover,
.navbar-default .navbar-brand {
&:hover {
color: #fff;
}
}

这个输出:

.navbar-default .navbar-nav > li > a:hover:hover,
.navbar-default .navbar-brand:hover {
color: #fff;
}

但我想成为:

.navbar-default .navbar-nav > li > a:hover,
.navbar-default .navbar-brand,
.navbar-default .navbar-brand:hover {
color: #fff;
}

如何在不使用 sass 重复父项的情况下在父项和子项中使用相同的属性?

最佳答案

试试这个:

$white: #fff;

.navbar-default {
.navbar-brand {
color: $white;
&:hover {
color: $white;
}
}
.navbar-nav > li > a:hover {
color: $white;
}
}

关于css - sass - 分组选择器,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/34811724/

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