minifySelectors(縮減選擇器)
移除不必要的全域選擇器、屬性選擇器去引號、修剪並正規化選擇器字串。
範例
輸入
*.box
.box::before
.box .box
[class*="box"]
.box ~ [class] {
color: red;
}
輸出
.box
.box:before
.box .box
[class*=box]
.box~[class] {
color: red;
}
移除不必要的全域選擇器、屬性選擇器去引號、修剪並正規化選擇器字串。
*.box
.box::before
.box .box
[class*="box"]
.box ~ [class] {
color: red;
}
.box
.box:before
.box .box
[class*=box]
.box~[class] {
color: red;
}