我知道答案应该很容易找到,但是唯一提及" order"我在stylelint's official website中找到了stylelint-order plugin,这看起来很有趣,但对我的需求来说有点太过分了(不打算暂时安装和配置它)。
Stylelint建议(通过发送警告)块内特定的属性顺序,即此块:
.my-class {
height: 100%;
position: absolute;
top: 0;
right: 0;
overflow-x: hidden;
background: #dadada;
}
会在所有内线发送property-sort-order
的警告。那么所需的订单是什么?
答案 0 :(得分:0)
它只是字母(A-Z)。因此,为了避免使用stylelint警告,应该按以下顺序对该块中的属性进行排序:
.my-class {
background: #dadada;
height: 100%;
overflow-x: hidden;
position: absolute;
right: 0;
top: 0;
}
但是对于SASS interpolation,可以忽略此订单执行,如下所示:
$bg: background;
.my-class {
height: 100%;
overflow-x: hidden;
position: absolute;
right: 0;
top: 0;
#{bg}: #dadada;
}