CSS预处理器Sass、LESS 和 Stylus

CSS 预处理器技术已经非常的成熟,而且也涌现出了越来越多的 CSS 的预处理器框架。本文向你介绍使用最为普遍的三款 CSS 预处理器框架,分别是 Sass、Less CSS、Stylus。

首先我们来简单介绍下什么是 CSS 预处理器,CSS 预处理器是一种语言用来为 CSS 增加一些编程的的特性,无需考虑浏览器的兼容性问题,例如你可以在 CSS 中使用变量、简单的程序逻辑、函数等等在编程语言中的一些基本技巧,可以让你的 CSS 更见简洁,适应性更强,代码更直观等诸多好处。

不要再停留在石器时代了,下面让我们开始 CSS 预处理器之旅。

我们将会从语法、变量、嵌套、混入(Mixin)、继承、导入、函数和操作符等方面分别对这三个框架进行比较介绍。

语法

在使用 CSS 预处理器之前最重要的是理解语法,幸运的是基本上大多数预处理器的语法跟 CSS 都差不多。

首先 Sass 和 Less 都使用的是标准的 CSS 语法,因此如果你可以很方便的将已有的 CSS 代码转为预处理器代码,默认 Sass 使用 .sass 扩展名,而 Less 使用 .less 扩展名。

下面是这二者的语法:

?


1

2

3

4

/* style.scss or style.less */

h1 {

  color: #0982C1;

}

你注意到了,这是一个再普通不过的,不过 Sass 同时也支持老的语法,就是不包含花括号和分号的方式:

?


1

2

3

/* style.sass */

h1

  color: #0982c1

而 Stylus 支持的语法要更多样性一点,它默认使用 .styl 的文件扩展名,下面是 Stylus 支持的语法:

?


1

2

3

4

5

6

7

8

9

10

11

12

/* style.styl */

h1 {

  color: #0982C1;

}

 

/* omit brackets */

h1

  color: #0982C1;

 

/* omit colons and semi-colons */

h1

  color #0982C1

你也可以在同一个样式单中使用不同的变量,例如下面的写法也不会报错:

?


1

2

3

4

5

h1 {

  color #0982c1

}

h2

  font-size: 1.2em

变量

你可以在 CSS 预处理器中声明变量,并在整个样式单中使用,支持任何类型的变量,例如颜色、数值(不管是否包括单位)、文本。然后你可以任意引用该变量。

Sass 的变量必须是 $ 开始,然后变量名和值使用冒号隔开,跟 CSS 的属性一致:

?


1

2

3

4

5

6

7

8

9

$mainColor: #0982c1;

$siteWidth: 1024px;

$borderStyle: dotted;

 

body {

  color: $mainColor;

  border: 1px $borderStyle $mainColor;

  max-width: $siteWidth;

}

而 Less 的变量名使用 @ 符号开始:

?


1

2

3

4

5

6

7

8

9

@mainColor: #0982c1;

@siteWidth: 1024px;

@borderStyle: dotted;

 

body {

  color: @mainColor;

  border: 1px @borderStyle @mainColor;

  max-width: @siteWidth;

}

Stylus 对变量名没有任何限定,你可以是 $ 开始,也可以是任意的字符,而且与变量值之间可以用冒号、空格隔开,需要注意的是 Stylus (0.22.4) 将会编译 @ 开始的变量,但其对应的值并不会赋予该变量,换句话说,在 Stylus 的变量名不要用 @ 开头。

?


1

2

3

4

5

6

7

8

mainColor = #0982c1

siteWidth = 1024px

$borderStyle = dotted

 

body

  color mainColor

  border 1px $borderStyle mainColor

  max-width siteWidth

上面的三种不同的 CSS 预处理器的写法,最终都将产生相同的结果:

?


1

2

3

4

5

body {

  color: #0982c1;

  border: 1px dotted #0982c1;

  max-width: 1024px;

}

你可以想象,加入你的 CSS 中使用了某个颜色的地方多达数十次,那么要修改颜色时你必须找到这数十次的地方并一一修改,而有了 CSS 预处理器,修改一个地方就够了!

嵌套

如果我们需要在CSS中相同的 parent 引用多个元素,这将是非常乏味的,你需要一遍又一遍地写 parent。例如:

?


1

2

3

4

5

6

7

8

9

10

11

12

section {

  margin: 10px;

}

section nav {

  height: 25px;

}

section nav a {

  color: #0982C1;

}

section nav a:hover {

  text-decoration: underline;

}

而如果用 CSS 预处理器,就可以少些很多单词,而且父子节点关系一目了然。我们这里提到的三个 CSS 框架都是允许嵌套语法:

?


1

2

3

4

5

6

7

8

9

10

11

12

13

14

15

section {

  margin: 10px;

 

  nav {

    height: 25px;

 

    a {

      color: #0982C1;

 

      &:hover {

        text-decoration: underline;

      }

    }

  }

}

最终生成的 CSS 结果是:

?


1

2

3

4

5

6

7

8

9

10

11

12

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 的混入语法:

?


1

2

3

4

5

6

7

8

9

10

11

12

13

14

15

16

17

/* 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 的混入语法:

?


1

2

3

4

5

6

7

8

9

10

11

12

13

14

15

16

17

/* 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 的混入语法:

?


1

2

3

4

5

6

7

8

9

10

11

12

13

14

15

16

17

/* 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 样式:

?


1

2

3

4

5

6

7

8

9

10

11

12

13

.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;

}

继承

当我们需要为多个元素定义相同样式的时候,我们可以考虑使用继承的做法。例如我们经常需要:

?


1

2

3

4

5

p,

ul,

ol {

  /* styles here */

}

在 Sass 和 Stylus 我们可以这样写:

?


1

2

3

4

5

6

7

8

9

10

11

12

13

14

.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 如下:

?


1

2

3

4

5

6

7

8

9

10

11

.block, p, ul, ol {

  margin: 10px 5px;

  padding: 2px;

}

p {

  border: 1px solid #EEE;

}

ul, ol {

  color: #333;

  text-transform: uppercase;

}

在这方面 Less 表现的稍微弱一些,更像是混入写法:

?


1

2

3

4

5

6

7

8

9

10

11

12

13

14

.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 如下:

?


1

2

3

4

5

6

7

8

9

10

11

12

13

14

15

16

.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:

?


1

2

3

4

/* file.{type} */

body {

  background: #EEE;

}

main.xxx:

?


1

2

3

4

5

6

@ import "reset.css";

@ import "file.{type}";

 

p {

  background: #0982C1;

}

最终生成的 CSS:

?


1

2

3

4

5

6

7

@ import "reset.css";

body {

  background: #EEE;

}

p {

  background: #0982C1;

}

颜色函数

CSS 预处理器一般都会内置一些颜色处理函数用来对颜色值进行处理,例如加亮、变暗、颜色梯度等。

Sass:

?


1

2

3

4

5

6

7

8

9

10

11

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.

下面是一个具体的例子:

?


1

2

3

4

5

6

$color: #0982C1;

 

h1 {

  background: $color;

  border: 3px solid darken($color, 50%);

}

Less CSS:

?


1

2

3

4

5

6

7

8

9

10

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 完整的颜色函数列表请看 LESS Documentation.

LESS 使用颜色函数的例子:

?


1

2

3

4

5

6

@color: #0982C1;

 

h1 {

  background: @color;

  border: 3px solid darken(@color, 50%);

}

Stylus:

?


1

2

3

4

5

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‘ */

完整的颜色函数列表请阅读 Stylus Documentation.

实例:

?


1

2

3

4

5

color = #0982C1

 

h1

  background color

  border 3px solid darken(color, 50%)

运算符

你可以直接在 CSS 预处理器中进行样式的计算,例如:

?


1

2

3

4

5

6

body {

  margin: (14px/2);

  top: 50px + 100px;

  right: 100px - 50px;

  left: 10 * 10;

}

一些跟具体浏览器相关的处理

这是宣传使用预处理的原因之一,并且是一个很好的理由,这样可以节省的大量的时间和汗水。创建一个mixin来处理不同浏览器的CSS写法是很简单的,节省了大量的重复工作和痛苦的代码编辑。

Sass

?


1

2

3

4

5

6

7

8

9

@mixin border-radius($values) {

  -webkit-border-radius: $values;

     -moz-border-radius: $values;

          border-radius: $values;

}

 

div {

  @ include border-radius(10px);

}

Less CSS

?


1

2

3

4

5

6

7

8

9

.border-radius(@values) {

  -webkit-border-radius: @values;

     -moz-border-radius: @values;

          border-radius: @values;

}

 

div {

  .border-radius(10px);

}

Stylus

?


1

2

3

4

5

6

7

8

9

border-radius(values) {

  -webkit-border-radius: values;

     -moz-border-radius: values;

          border-radius: values;

}

 

div {

  border-radius(10px);

}

编译结果:

?


1

2

3

4

5

div {

  -webkit-border-radius: 10px;

     -moz-border-radius: 10px;

          border-radius: 10px;

}

3D文本

要生成具有 3D 效果的文本可以使用 text-shadows ,唯一的问题就是当要修改颜色的时候就非常的麻烦,而通过 mixin 和颜色函数可以很轻松的实现:

Sass

?


1

2

3

4

5

6

7

8

9

10

11

12

13

@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

?


1

2

3

4

5

6

7

8

9

10

11

12

13

.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

?


1

2

3

4

5

6

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

?


1

2

3

4

5

6

7

8

9

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

?


1

2

3

4

5

6

7

8

9

10

11

12

13

14

15

16

17

$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

?


1

2

3

4

5

6

7

8

9

10

11

12

13

14

15

16

17

@siteWidth: 1024px;

@gutterWidth: 20px;

@sidebarWidth: 300px;

 

body {

  margin: 0 auto;

  width: @siteWidth;

}

.content {

  float: left;

  width: @siteWidth - (@[email protected]);

}

.sidebar {

  float: left;

  margin-left: @gutterWidth;

  width: @sidebarWidth;

}

Stylus

?


1

2

3

4

5

6

7

8

9

10

11

12

13

14

15

16

17

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;

}

实际效果

?


1

2

3

4

5

6

7

8

9

10

11

12

13

body {

  margin: 0 auto;

  width: 1024px;

}

.content {

  float: left;

  width: 704px;

}

.sidebar {

  float: left;

  margin-left: 20px;

  width: 300px;

}

错误报告

如果你经常 CSS 你会发现很难找到 CSS 中错误的地方,这也是预处理框架的好处,它会报告错误,你可以从这篇文章中学习如何让 CSS 框架错误报告。

注释

以上三种框架都支持形如 /* */ 的多行注释以及 // 的单行注释。

时间: 2024-10-01 22:16:42

CSS预处理器Sass、LESS 和 Stylus的相关文章

css预处理器sass入门学习

SASS 叫做css预处理器,他的基本思想是用一门专门的编程语言来进行页面样式的设计,然后在编译成正常的css文件. Sass的用法 安装 sass是用ruby语言写的,所以我们在安装sass之前要先安装ruby(ruby安装自行百度),执行下面命令安装: gem install sass 使用 sass就是普通的文本文件,后缀名为.scss.然后让我们用sass的语法写好文件之后,需要编译成.css文件才能供html文件使用(即通过link标签引入html文件),那么我们就可以使用命令行或是g

CSS预处理器Sass(Scss)、Less、Stylus

CSS 预处理编译器能让我成程序化其的方式编写CSS代码,可以引入CSS中没有的变量.条件.函数等特性,从而让代码更简单易维护,但一般按预处理器语法编写的代码无法直接在浏览器中运行,需用通过工具比如gulp转换成标准的CSS语法,从而在浏览器中运行.个人理解它是标准CSS语法的扩展及增强,能在一定程度上提高编码效率. 三种预处理器的对比: Sass诞生是最早也是最成熟的CSS预处理器,有Ruby社区和Compass支持:安装.编译依赖Ruby环境: Stylus早期服务器Node JS项目,在该

关于前端CSS预处理器Sass的小知识!

前面的话 ??"CSS预处理器"(css preprocessor)的基本思想是,用一种专门的编程语言,进行网页样式设计,然后再编译成正常的CSS文件.SASS是一种CSS的开发工具,提 供了许多便利的写法,大大节省了设计者的时间,使得CSS的开发,变得简单和可维护.本文将详细介绍sass的使用 定义 ??Sass是一门高于CSS的元语言,它能用来清晰地.结构化地描述文件样式,有着比普通CSS更加强大的功能.Sass能够提供更简洁.更优雅的语法,同时提供多种功能来创建可维护和管理的样式

前端CSS预处理器Sass

前面的话 ??"CSS预处理器"(css preprocessor)的基本思想是,用一种专门的编程语言,进行网页样式设计,然后再编译成正常的CSS文件.SASS是一种CSS的开发工具,提供了许多便利的写法,大大节省了设计者的时间,使得CSS的开发,变得简单和可维护.本文将详细介绍sass的使用 定义 ??Sass是一门高于CSS的元语言,它能用来清晰地.结构化地描述文件样式,有着比普通CSS更加强大的功能.Sass能够提供更简洁.更优雅的语法,同时提供多种功能来创建可维护和管理的样式表

css预处理器sass使用教程(多图预警)

css预处理器赋予了css动态语言的特性,如变量.函数.运算.继承.嵌套等,有助于更好地组织管理样式文件,以及更高效地开发项目.css预处理器可以更方便的维护和管理css代码,让整个网页变得更加灵活可变.对于预处理器,广泛使用的有less和sass.在这不做对比,2者大同小异,sass基于Ruby语言编写,所以编译sass文件需要Ruby环境.我们使用sass并不需要过多了解Ruby语言,只需要安装Ruby环境即可,而less则主要是运行在node环境下,功能语法有类似之处.本文主要介绍Ruby

CSS预处理器SASS学习总结

写在前面的话:如果你css写了很多了,不妨换一种方式来写写css,也许会提高效率,SASS是我比较喜欢的一种.css本来就不是太难,所以也仅仅介绍SASS常用的用法,避免复杂化,后续用到新的东西,可以再进行拓展. ======正文开始====== 我们可以通过一种类似css的编程语言编写代码,保存为.scss后缀名的文件,然后使用SASS进行处理为css文件,而这种.scss文件中可以有变量.嵌套等功能,有些编程的味道:同时.scss文件也能够通过SASS处理为压缩的.缩进的等不同风格的css代

css预处理器sass安装配置(本地安装)

1.安装Ruby 2.下载sass安装包.放入文件夹,最好放入bin中.(被墙了,只好本地装) 3.从ruby的命令行安装本地的安装包 sass安装好了.

CSS - 浅析css预处理器

为什么要预处理器 css层叠样式表是一门标记语言,并不是编程语言,因此不可以自定义变量,不可以引用等,它不具备任何语法支持,它主要缺陷如下: 语法不够强大,比如:无法嵌套书写,导致模块化开发中需要书写很多重复的选择器: 没有变量和合理的样式复用机制,使得逻辑上相关的属性值必须以字面量的形式重复输出,导致难以维护 这就导致了我们在工作中无端增加了许多工作量.为了解决这个问题,前端开发人员会使用一种称之为 [CSS 预处理器] 的工具,提供 CSS 缺失的样式层复用机制.减少冗余代码,提高样式代码的

详细比较三个 CSS 预处理器(框架):Sass、LESS 和 Stylus

CSS 预处理器技术已经非常的成熟,而且也涌现出了越来越多的 CSS 的预处理器框架.本文向你介绍使用最为普遍的三款 CSS 预处理器框架,分别是 Sass.Less CSS.Stylus. 首先我们来简单介绍下什么是 CSS 预处理器,CSS 预处理器是一种语言用来为 CSS 增加一些编程的的特性,无需考虑浏览器的兼容性问题,例如你可以在 CSS 中使用变量.简单的程序逻辑.函数等等在编程语言中的一些基本技巧,可以让你的 CSS 更见简洁,适应性更强,代码更直观等诸多好处. 不要再停留在石器时