合并规则

按选择器和重叠属性/值对合并相邻规则。

示例

输入

.box {
    color: blue;
}
.box {
    font-weight: 700;
}

输出

.box {
    color: blue;
    font-weight: 700;
}