这是我的scss文件
@mixin important-text {
color: red;
font-size: 25px;
font-weight: bold;
border: 1px solid blue;
}
.danger {
@include: important-text;
background-color: green;
}
在我用考拉编译后,我收到一条错误消息 -
Error: Invalid CSS after " @include": expected identifier, was ": important-text;"
on line 9 of C:\Users\
我不知道哪里出了问题。