normalizeWhitespace
修剪规则、选择器和声明内部和周围的空白,以及移除每个选择器内部的最终分号。
示例
输入
.box {
text-decoration: underline;
color: red !important;
}
输出
.box{text-decoration:underline;color:red!important}
修剪规则、选择器和声明内部和周围的空白,以及移除每个选择器内部的最终分号。
.box {
text-decoration: underline;
color: red !important;
}
.box{text-decoration:underline;color:red!important}