sass和less使用的是标准的css语法。默认的sass使用 .sass 扩展名;而less默认使用 .less 扩展名。
/* style.sass or style.less */
h1 {
color: #000fff;
}
/* sass也支持老的语法;就是不包含花括号和分号的写法 */
h1
color: #000fff
stylus支持的语法更多样些,默认是 .styl 文件的扩展名:
h1 {
color: #000fff;
}
h1
color: #000fff;
h1
color #000ff
sass:
sass 最为重要的就是为css引入了变量,可以反复使用css属性值定义成变量然后通过变量来引用它们,而无需重复书写这一属性值;
sass变量必须是以 $ 开头,然后变量和值之间用 ( : ) 隔开,和css属性一样。
$maincolor : #000fff;
$sizeWidth : 1024px;
body {
color: $maincolor;
max-width: $sizeWidth;
}
@maincolor : #000fff;
@sizeWidth : 1024px;
body {
color: @maincolor;
max-width: @sizeWidth;
}
maincolor = #000fff;
siteWidth = 1024px;
body
color maincolor
max-width siteWidth
以上三种写法最终解析css如下:
body{
color: #000fff;
max-width: 1024px;
}
优点:在修改多处地方的样式时,只需用改变量值即可。
如果需要css中相同的parent引用多个元素时,这将是非常乏味的,你需要一遍地些parent,例如:
div {
margin: 10px;
}
div nav {
height: 25px;
}
div nav a {
color: #0982C1;
}
可以使用css预编译器,就可以少写很多单词,而且父子节点之间一目了然,并且sass、less、stylus都支持如下写法:
nav {
ul {
margin: 0;
padding:0;
}
li {
display: inline-block;
}
a {
display: block;
padding: 6px 12px;
text-decoration: none;
}
}
/* css style */
nav ul {
margin: 0;
padding: 0;
list-style: none;
}
nav li {
display: inline-block;
}
nav a {
display: block;
padding: 6px 12px;
text-decoration: none;
}
body {
mrgin: (14px/2);
top: 50px + 100px;
}
css预处理器一般会内置一些函数来对颜色进行处理,例如:加亮、变暗、颜色梯度等。
lighten($color, 10%);
darken($color, 10%);
saturate($color, 10%);
desaturate($color, 10%);
grayscale($color);
complement($color);
invert($color);
mix($color1, $color2, 50%);
示例如下:
$color: #000fff;
h1 {
background: $color;
border: 3px solid darken($color, 50%);
}
lighten(@color, 10%);
darken(@color, 10%);
saturate(@color, 10%);
desaturate(@color, 10%);
grayscale(@color);
complement(@color);
invert(@color);
mix(@color1, @color2, 50%);
示例如下:
@color: #000fff;
h1 {
background: @color;
border: 3px solid darken(@color, 50%);
}
lighten(color, 10%);
darken(color, 10%);
示例如下:
color = #000fff;
h1
background color
border 3px solid darken(color, 50%)
很多开发者对 css 的导入做法并不感冒,因为他需要多次的HTTP请求。但是在css预编译的导入操作则不同,它只是在语义上包含了不同的文件,但最终结果是一个单一的css文件,如果你通过 @import "file.css"
导入css文件,那效果跟普通的引入css 文件一样。
注意:导入文件定义的混入、变量等信息也将会被引入到主样式文件中,因此需要避免它们互相冲突。
// 1.css
/* file.{type} */
body {
background:red;
}
@import "1.css";
@import "file.{type}";
p {
background: #000fff;
}
最终生成的css文件:
@import "1.css";
body {
background: red;
}
p {
background:#000fff;
}
当我们需要为多个元素定义相同样式的时候,可以考虑使用继承的方法。
.message {
border: 1px solid #ccc;
padding: 0px;
color: #000fff;
}
.success {
@extend .message;
border-color: green;
}
.message {
border: 1px solid #ccc;
padding: 0px;
color: #000fff;
}
.success {
.message;
border-color: green;
}
上面的两种写法,最终呈现的css样式:
.message, .success {
border: 1px solid #cccccc;
padding: 10px;
color: #000fff;
}
.success {
border-color: green;
}
.message 的样式将会插入到相应的继承的选择器中,但需要注意优先级问题。
Mixins的混入有点像是函数或宏,当某段css样式需要在多个元素中使用时,可以为这些共用的css定义一个mixin,然后只需要在引用这些css地方的调用mixin即可。
@mixin error($borderWidth: 2px) {
border:$borderWidth solid #000fff;
color: #f00;
}
.generic-error {
padding:20px;
margin: 4px;
@include error(); //默认为 border: 2px solid #000fff;
}
.login-error {
left: 12px;
@include error(5px); //默认为:border: 5px solid #000fff;
}
.error(@borderWidth: 2px) {
border: @borderWidth solid #F00;
color: #F00;
}
.generic-error {
padding: 20px;
margin: 4px;
.error(); //这里调用默认 border: 2px solid #F00;
}
.login-error {
left: 12px;
position: absolute;
top: 20px;
.error(5px); //这里调用 border:5px solid #F00;
}
error(borderWidth= 2px) {
border: borderWidth solid #F00;
color: #F00;
}
.generic-error {
padding: 20px;
margin: 4px;
error();
}
.login-error {
left: 12px;
position: absolute;
top: 20px;
error(5px);
}
要生成具有3D效果的文本可以使用 text-shadow,唯一的问题就是当要修改颜色时非常麻烦,而通过mixin和颜色函数就可以轻松实现。
@mixin text3d($color) {
color: $color;
text-shadow: 1px 1px 0px dargen($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: 18px;
@include text3d(#000fff);
}
.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);
}
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;
}
使用数值操作和变量可以很方便的实现适应屏幕大小的布局处理。
$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;
}
@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;
}
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;
}
生成的css文件:
body {
margin: 0 auto;
width: 1024px;
}
.content {
float: left;
width: 704px;
}
.sidebar {
float: left;
margin-left: 20px;
width: 300px;
}
@if 可以是一个条件单独使用,也可以和 @else 结合多条件使用
代码如下:
$lte7: true;
$type: monster;
.ib {
display: inline-block;
@if $lte7 {
*display: inline;
*zoom: 1;
}
}
p {
@if $type == ocean {
color: blue;
} @else if $type == matador {
color: red;
} @else if $type == monster {
color: green;
} @else {
color: black;
}
}
最终生成的css文件:
.ib{
display:inline-block;
*display:inline;
*zoom:1;
}
p {
color: green;
}
1. @for $var from through
2. @for $var from to
其中 $i 表示变量,start表示初始值,end表示结束值,这两个区别是关键字 through 表示包含end结束值,而to则不包含end这个数。
@for $i from 1 to 10 {
.border-#{$i} {
border: #{$i}px solid blue;
}
}
同时也支持while循环:
$i: 6;
@while $i >0 {
.item-#{$i} {width: 2em * $i; }
$i: $i - 2;
}
最后,同时支持each命令,作用与for类似:
$animal-list: puma, sea-slug, egret, salamander;
@each $animal in $animal-list {
.#{$animal}-icon {
background-image: url('/images/#{$animal}.png');
}
}
最终生成的css文件:
.puma-icon {
background-image: url('/images/puma.png');
}
.sea-slug-icon {
background-image: url('/images/sea-slug.png');
}
.egret-icon {
background-image: url('/images/egret.png');
}
.salamander-icon {
background-image: url('/images/salamander.png');
}
以上就是sass,Less css与stylus的最显著的区别。