我知道CSS規則相當複雜;然而,優化程序不能簡單地通過多種方式簡化以下css嗎?如果是這樣,那麼在rails-sass寶石中有沒有選擇它?SASS縮小器可以刪除重複樣式嗎?
span {
background: red;
color: green;
}
.test2 {
background: red;
color: green;
}
span {
background: green;
color: inherit;
}
.test2 {
background: inherit !important;
color: inherit;
color: inherit;
color: inherit;
}
附加的上下文:
爲了澄清,我想提出以下建議,以及...
來源:
span {
background: red;
}
span {
background: orange;
color: green;
}
span {
background: yellow;
}
span {
background: blue;
color: green;
}
而且,我想一個編譯器生成以下內容:
span {
background: blue;
color: green;
}
我知道存在多餘的樣式,但是當連續修改樣式表時會發生這種情況很多次,而且我想消除死代碼。
你可以通過運行[CSSTidy]輸出的CSS(http://csstidy.sourceforge.net/)或喜歡。 – Whymarrh