gpt4 book ai didi

css - 如何在 Sass 中使用 >?

转载 作者:太空宇宙 更新时间:2023-11-03 23:44:30 25 4
gpt4 key购买 nike

如何在 Sass 中使用 > 符号?我想用

覆盖它
nav>li>a:hover, .nav>li>a:focus {
text-decoration: none;
background-color: #eee;
}

这个:

nav {
li {
a:hover, a:focus { }
}
}

但是,它不起作用,因为 > 有更严格的路径。我需要在我的 Sass 中使用 >。我该怎么做?

附言。不想依赖 !important

最佳答案

这可能对你有用:

SASS:

nav {
> li {
> a:hover, > a:focus { }
}
}

关于css - 如何在 Sass 中使用 >?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/21892583/

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