合併規則 (mergeRules)
透過選擇器和重疊的屬性/值對合併相鄰規則。
範例
輸入
.box {
color: blue;
}
.box {
font-weight: 700;
}
輸出
.box {
color: blue;
font-weight: 700;
}
透過選擇器和重疊的屬性/值對合併相鄰規則。
.box {
color: blue;
}
.box {
font-weight: 700;
}
.box {
color: blue;
font-weight: 700;
}