比較三個 CSS 前處理器:Sass、LESS 和 Stylus
一、什麼是CSS前處理器
CSS前處理器定義了一種新的語言,基本的思想是用一種專門的程式語言,開發者只需要使用這種語言進行編碼工作,減少枯燥無味的CSS程式碼的編寫過程的同時,它能讓你的CSS具備更加簡潔、適應性更強、可讀性更加、層級關係更加明顯、更易於程式碼的維護等諸多好處。
CSS前處理器種類繁多,本次就以Sass、Less、Stylus進行比較。
二、語法
在使用CSS前處理器之前最重要的是瞭解語法,我只寫過stylus,就從網上找了下另外兩種語法的格式,與大家對比分享。
首先Sass和Less都是用的是標準的CSS語法,因此你可以很方便的把已完成的CSS程式碼轉為前處理器識別的程式碼,Sass
一下是兩者的語法
/* style.scss or style.less */ h1 { color: #0982C1; }
你注意到Sass同時也支援老語法,就是不包含花括號和分號的書寫格式。
/* style.sass */ h1 color: #0982c1
然而Stylus支援的語法就更多樣性,它預設使用.styl的副檔名,下面是Stylus語法。
/* style.styl */ h1 { color: #0982C1; } /* omit brackets */ h1 color: #0982C1; /* omit colons and semi-colons*/ h1 color #0982C1
三、變數
你可以在CSS預處理中宣告變數,並在整個樣式單中使用,支援任何型別的變數,例如:顏色、數值(是否包含單位)、文字。然後你可以任意的調取和使用該變數。Sass的變數是必須$開始,然後變數名和值要冒號隔開,跟CSS屬性書寫格式一致。
$mainColor: #0982c1; $siteWidth: 1024px; $borderStyle: dotted; body { color: $publicColor; border: 1px $borderStyle $mainColor; max-width: $siteWidth; }
而Less的變數名使用@符號開始:
@mainColor: #0982c1; @siteWidth: 1024px; @borderStyle: dotted; body { color: @publicColor; border: 1px @borderStyle @mainColor; max-width: @siteWidth; }
Stylus對變數名沒有任何限定,你可以是$開始,也可以是任意字元,而且與變數值之間可以用冒號、空格隔開,需要注意的是 Stylus (0.22.4) 將會編譯 @ 開始的變數,但其對應的值並不會賦予該變數,換句話說,在 Stylus 的變數名不要用 @ 開頭。
mainColor = #0982c1
siteWidth = 1024px
$borderStyle = dotted
body
color mainColor
border 1px $borderStyle mainColor
max-width siteWidth
上面三種不同的CSS寫法,最終將會生成相同結果:
body { color: #0982c1; border: 1px dotted #0982c1; max-width: 1024px; }
最容易體現它的好處的是,假設你在CSS中使用同一種顏色數十次,如果你要修改顯色,需要找到並修改十次相同的程式碼,而有了CSS前處理器,修改一個地方就夠了。
四、巢狀
如果你需要在CSS中相同的parent引用多個元素,你需要一遍一遍的去寫parent。例如:
section { margin: 10px; } section nav { height: 25px; } section nav a { color: #0982C1; } section nav a:hover { text-decoration: underline; }
然而如果用CSS前處理器,就可以少些很多單詞,而且父節點關係一目瞭然。
section { margin: 10px; nav { height: 25px; a { color: #0982C1; &:hover { text-decoration: underline; } } } }
stylus還可省略花括號,書寫更加方便,根據個人喜好還可刪除中間冒號。
section
margin: 10px;
nav
height: 25px;
a
color: #0982C1;
&:hover
text-decoration: underline;
最終生成CSS結果是:
section { margin: 10px; } section nav { height: 25px; } section nav a { color: #0982C1; } section nav a:hover { text-decoration: underline; }
五、Mixins (混入)
Mixins 有點像是函式或者是巨集,當你某段 CSS 經常需要在多個元素中使用時,你可以為這些共用的 CSS 定義一個 Mixin,然後你只需要在需要引用這些 CSS 地方呼叫該 Mixin 即可。
Sass 的混入語法:
/* Sass mixin error with (optional) argument $borderWidth which defaults to 2px if not specified */ @mixin error($borderWidth: 2px) { border: $borderWidth solid #F00; color: #F00; } .generic-error { padding: 20px; margin: 4px; @ include error(); /* Applies styles from mixin error */ } .login-error { left: 12px; position: absolute; top: 20px; @ include error(5px); /* Applies styles from mixin error with argument $borderWidth equal to 5px*/ }
Less CSS 的混入語法:
/* LESS mixin error with (optional) argument @borderWidth which defaults to 2px if not specified */ .error(@borderWidth: 2px) { border: @borderWidth solid #F00; color: #F00; } .generic-error { padding: 20px; margin: 4px; .error(); /* Applies styles from mixin error */ } .login-error { left: 12px; position: absolute; top: 20px; .error(5px); /* Applies styles from mixin error with argument @borderWidth equal to 5px */ }
Stylus 的混入語法:
/* Stylus mixin error with (optional) argument borderWidth which defaults to 2px if not specified */ error(borderWidth= 2px) { border: borderWidth solid #F00; color: #F00; } .generic-error { padding: 20px; margin: 4px; error(); /* Applies styles from mixin error */ } .login-error { left: 12px; position: absolute; top: 20px; error(5px); /* Applies styles from mixin error with argument borderWidth equal to 5px */ }
最終它們都將編譯成如下的 CSS 樣式:
.generic-error { padding: 20px; margin: 4px; border: 2px solid #f00; color: #f00; } .login-error { left: 12px; position: absolute; top: 20px; border: 5px solid #f00; color: #f00; }
六、繼承
當我們需要為多個元素定義相同樣式的時候,我們可以考慮使用繼承的做法。例如我們經常需要:
p, ul, ol { /* styles here */ }
在 Sass 和 Stylus 我們可以這樣寫:
.block { margin: 10px 5px; padding: 2px; } p { @extend .block; /* Inherit styles from '.block' */ border: 1px solid #EEE; } ul, ol { @extend .block; /* Inherit styles from '.block' */ color: #333; text-transform: uppercase; }
在這裡首先定義 .block 塊,然後讓 p 、ul 和 ol 元素繼承 .block ,最終生成的 CSS 如下:
.block, p, ul, ol { margin: 10px 5px; padding: 2px; } p { border: 1px solid #EEE; } ul, ol { color: #333; text-transform: uppercase; }
在這方面 Less 表現的稍微弱一些,更像是混入寫法:
.block { margin: 10px 5px; padding: 2px; } p { .block; /* Inherit styles from '.block' */ border: 1px solid #EEE; } ul, ol { .block; /* Inherit styles from '.block' */ color: #333; text-transform: uppercase; }
生成的 CSS 如下:
.block { margin: 10px 5px; padding: 2px; } p { margin: 10px 5px; padding: 2px; border: 1px solid #EEE; } ul, ol { margin: 10px 5px; padding: 2px; color: #333; text-transform: uppercase; }
你所看到的上面的程式碼中,.block 的樣式將會被插入到相應的你想要繼承的選擇器中,但需要注意的是優先順序的問題。
匯入 (Import)
很多 CSS 開發者對匯入的做法都不太感冒,因為它需要多次的 HTTP 請求。但是在 CSS 前處理器中的匯入操作則不同,它只是在語義上包含了不同的檔案,但最終結果是一個單一的 CSS 檔案,如果你是通過 @ import "file.css";
匯入 CSS 檔案,那效果跟普通的 CSS 匯入一樣。注意:匯入檔案中定義的混入、變數等資訊也將會被引入到主樣式檔案中,因此需要避免它們互相沖突。
reset.css:
/* file.{type} */ body { background: #EEE; }
main.xxx:
@ import "reset.css"; @ import "file.{type}"; p { background: #0982C1; }
最終生成的 CSS:
@ import "reset.css"; body { background: #EEE; } p { background: #0982C1; }
七、顏色函式
CSS 前處理器一般都會內建一些顏色處理函式用來對顏色值進行處理,例如加亮、變暗、顏色梯度等。
Sass:
lighten($color, 10%); /* returns a color 10% lighter than $color */ darken($color, 10%); /* returns a color 10% darker than $color */ saturate($color, 10%); /* returns a color 10% more saturated than $color */ desaturate($color, 10%); /* returns a color 10% less saturated than $color */ grayscale($color); /* returns grayscale of $color */ complement($color); /* returns complement color of $color */ invert($color); /* returns inverted color of $color */ mix($color1, $color2, 50%); /* mix $color1 with $color2 with a weight of 50% */
上面只是簡單列了 Sass 的一些基本顏色處理函式,完整的列表請看 Sass Documentation.
下面是一個具體的例子:
$color: #0982C1; h1 { background: $color; border: 3px solid darken($color, 50%); }
Less CSS:
lighten(@color, 10%); /* returns a color 10% lighter than @color */ darken(@color, 10%); /* returns a color 10% darker than @color */ saturate(@color, 10%); /* returns a color 10% more saturated than @color */ desaturate(@color, 10%); /* returns a color 10% less saturated than @color */ spin(@color, 10); /* returns a color with a 10 degree larger in hue than @color */ spin(@color, -10); /* returns a color with a 10 degree smaller hue than @color */ mix(@color1, @color2); /* return a mix of @color1 and @color2 */
LESS 使用顏色函式的例子:
@color: #0982C1; h1 { background: @color; border: 3px solid darken(@color, 50%); }
Stylus:
lighten(color, 10%); /* returns a color 10% lighter than 'color' */ darken(color, 10%); /* returns a color 10% darker than 'color' */ saturate(color, 10%); /* returns a color 10% more saturated than 'color' */ desaturate(color, 10%); /* returns a color 10% less saturated than 'color' */
例項:
color = #0982C1
h1
background color
border 3px solid darken(color, 50%)
八、運算子
你可以直接在 CSS 前處理器中進行樣式的計算,例如:
body { margin: (14px/2); top: 50px + 100px; right: 100px - 50px; left: 10 * 10; }
一些跟具體瀏覽器相關的處理
這是宣傳使用預處理的原因之一,並且是一個很好的理由,這樣可以節省的大量的時間和汗水。建立一個mixin來處理不同瀏覽器的CSS寫法是很簡單的,節省了大量的重複工作和痛苦的程式碼編輯。
Sass:
@mixin border-radius($values) { -webkit-border-radius: $values; -moz-border-radius: $values; border-radius: $values; } div { @ include border-radius(10px); }
Less CSS:
.border-radius(@values) { -webkit-border-radius: @values; -moz-border-radius: @values; border-radius: @values; } div { .border-radius(10px); }
Stylus:
border-radius(values) { -webkit-border-radius: values; -moz-border-radius: values; border-radius: values; } div { border-radius(10px); }
編譯結果:
div { -webkit-border-radius: 10px; -moz-border-radius: 10px; border-radius: 10px; }
3D文字
要生成具有 3D 效果的文字可以使用 text-shadows
,唯一的問題就是當要修改顏色的時候就非常的麻煩,而通過 mixin 和顏色函式可以很輕鬆的實現:
Sass:
@mixin text3d($color) { color: $color; text-shadow: 1px 1px 0px darken($color, 5%), 2px 2px 0px darken($color, 10%), 3px 3px 0px darken($color, 15%), 4px 4px 0px darken($color, 20%), 4px 4px 2px #000; } h1 { font-size: 32pt; @ include text3d(#0982c1); }
Less CSS
.text3d(@color) { color: @color; text-shadow: 1px 1px 0px darken(@color, 5%), 2px 2px 0px darken(@color, 10%), 3px 3px 0px darken(@color, 15%), 4px 4px 0px darken(@color, 20%), 4px 4px 2px #000; } span { font-size: 32pt; .text3d(#0982c1); }
Stylus
text3d(color)
color: color
text-shadow: 1px 1px 0px darken(color, 5%), 2px 2px 0px darken(color, 10%), 3px 3px 0px darken(color, 15%), 4px 4px 0px darken(color, 20%), 4px 4px 2px #000
span
font-size: 32pt
text3d(#0982c1)
生成的 CSS
span { font-size: 32pt; color: #0982c1; text-shadow: 1px 1px 0px #097bb7, 2px 2px 0px #0875ae, 3px 3px 0px #086fa4, 4px 4px 0px #07689a, 4px 4px 2px #000; }
效果圖:
列 (Columns)
使用數值操作和變數可以很方便的實現適應螢幕大小的佈局處理。
Sass
$siteWidth: 1024px; $gutterWidth: 20px; $sidebarWidth: 300px; body { margin: 0 auto; width: $siteWidth; } .content { float: left; width: $siteWidth - ($sidebarWidth+$gutterWidth); } .sidebar { float: left; margin-left: $gutterWidth; width: $sidebarWidth;
Less CSS
@siteWidth: 1024px; @gutterWidth: 20px; @sidebarWidth: 300px; body { margin: 0 auto; width: @siteWidth; } .content { float: left; width: @siteWidth - (@sidebarWidth+@gutterWidth); } .sidebar { float: left; margin-left: @gutterWidth; width: @sidebarWidth; }
Stylus
siteWidth = 1024px; gutterWidth = 20px; sidebarWidth = 300px; body { margin: 0 auto; width: siteWidth; } .content { float: left; width: siteWidth - (sidebarWidth+gutterWidth); } .sidebar { float: left; margin-left: gutterWidth; width: sidebarWidth; }
實際效果
body { margin: 0 auto; width: 1024px; } .content { float: left; width: 704px; } .sidebar { float: left; margin-left: 20px; width: 300px; }
注:參考 張鑫旭Stylue中文文件http://www.zhangxinxu.com/jq/stylus/selectors.php
開源中國社群:https://www.oschina.net/question/12_44255