gpt4 book ai didi

inheritance - 在 SCSS 中包含另一个类

转载 作者:行者123 更新时间:2023-12-03 04:04:01 24 4
gpt4 key购买 nike

我的 SCSS 文件中有这个:

.class-a{
display: inline-block;
//some other properties
&:hover{
color: darken(#FFFFFF, 10%);
}
}

.class-b{

//Inherite class-a here

//some properties
}

在b类中,我想继承a类的所有属性和嵌套声明。这是怎么做到的?我尝试使用 @include class-a,但这只会在编译时引发错误。

最佳答案

看起来像这样的简单案例不需要 @mixin@include

人们可以这样做:

.myclass {
font-weight: bold;
font-size: 90px;
}

.myotherclass {
@extend .myclass;
color: #000000;
}

关于inheritance - 在 SCSS 中包含另一个类,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/9560170/

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