首页 前端知识 项目报错Sass‘s behavior for declarations that appear after nested rules will be changing to match the be

项目报错Sass‘s behavior for declarations that appear after nested rules will be changing to match the be

2024-08-22 23:08:45 前端知识 前端哥 958 242 我要收藏

标题报错信息

Deprecation Warning: Sass's behavior for declarations that appear after nested
rules will be changing to match the behavior specified by CSS in an upcoming  
version. To keep the existing behavior, move the declaration above the nested 
rule. To opt into the new behavior, wrap the declaration in `& {}`.

More info: https://sass-lang.com/d/mixed-decls

    ╷
86  │ ┌         .isCheck {
87  │ │             color: #FFFFFF;
88  │ │             background: #0094E7;
89  │ │         }
    │ └─── nested rule
... │
91  │           text-align: center;
    │           ^^^^^^^^^^^^^^^^^^ declaration
    ╵
    src\views\index\index.vue 91:3  root stylesheet

在这里插入图片描述

原因:

sass官网有具体的说明:https://sass-lang.com/documentation/breaking-changes/mixed-decls/
在这里插入图片描述

解决方法:

将父级的样式代码写到最前面

现在的代码:
在这里插入图片描述

修改后的代码:
在这里插入图片描述
结果:至此就不报错了
在这里插入图片描述

转载请注明出处或者链接地址:https://www.qianduange.cn//article/16589.html
标签
评论
发布的文章

【Jquery】jquery的简单使用

2024-09-01 00:09:11

NodeJs使用jQuery中$Ajax

2024-09-01 00:09:45

大家推荐的文章
会员中心 联系我 留言建议 回顶部
复制成功!