cssDeclarationSorter(CSS 宣告排序器)
根據屬性名稱排序 CSS 宣告,排序後的 CSS 在經過 gzip 壓縮後會更小,因為會有更多相似的字串。
範例
輸入
body {
animation: none;
color: #C55;
border: 0;
}
輸出
body {
animation: none;
border: 0;
color: #C55;
}
根據屬性名稱排序 CSS 宣告,排序後的 CSS 在經過 gzip 壓縮後會更小,因為會有更多相似的字串。
body {
animation: none;
color: #C55;
border: 0;
}
body {
animation: none;
border: 0;
color: #C55;
}