css预编译sass,css也可以变得优雅

1. 嵌套选择器

css 复制代码
#content {
  article {
    h1 { color: #333 }
    p { margin-bottom: 1.4em }
  }
  aside { background-color: #EEE }
}

编译后

css 复制代码
#content article h1 { color: #333 }
#content article p { margin-bottom: 1.4em }
#content aside { background-color: #EEE }

2. 变量声明和使用

css 复制代码
$width: 100px;
$height: 100px;
$bg-red: #ff4040;
.box{
    width: $width;
    height: $height;
    background: $bg-red;
}

编译后

css 复制代码
.box{
  width: 100px;
  height: 100px;
  background: #ff4040;
}

3. 父选择器标识符&

css 复制代码
article a {
  color: blue;
  &:hover { color: red }
}

编译后

css 复制代码
article a { color: blue }
article a:hover { color: red }

4. 嵌套属性

css 复制代码
nav {
  border: {
    style: solid;
    width: 1px;
    color: #000;
  }
}

编译后

css 复制代码
nav {
  border-style: solid;
  border-width: 1px;
  border-color: #ccc;
}

5. 混合器(整合重复代码)

  • @mixin 定义混合器
  • @include 使用混合器
  1. 定义混合器
css 复制代码
@mixin box-style {
  width: 100px;
  height: 100px;
}
  1. 使用混合器
css 复制代码
.box1{
  background: cyan;
  @include box-style;
}
.box2{
  background: #ff4040;
  @include box-style;
}

编译后

css 复制代码
.box1{
  background: cyan;
  width: 100px;
  height: 100px;
}
.box2{
  background: #ff4040;
  width: 100px;
  height: 100px;
}

6. 给混合器传参

  • @mixin接收参数使用 @include传参,这种方式跟JavaScript的function很像
  1. 定义混合器
css 复制代码
@mixin link-colors($normal, $hover, $visited) {
  color: $normal;
  &:hover { color: $hover; }
  &:visited { color: $visited; }
}
  1. 使用混合器并传参进去
css 复制代码
a {
  @include link-colors(blue, red, green);
}

编译后

css 复制代码
a { color: blue; }
a:hover { color: red; }
a:visited { color: green; }

7. @for

用法1:through

条件范围包含 start 与 end 的值 @for $var from <start> through <end>

css 复制代码
@for $i from 1 through 3 {
  .w-#{$i * 100} { width: 100px * $i; }
}

编译后

css 复制代码
.w-100 {
  width: 100px;}
.w-200 {
  width: 200px;}
.w-300 {
  width: 300px;}

用法2:to

条件范围只包含 start 的值不包含 end 的值 @for $var from <start> to <end>

css 复制代码
@for $i from 1 to 3 {
  .w-#{$i * 100} { width: 100px * $i; }
}

编译后

css 复制代码
.w-100 {
  width: 100px;}
.w-200 {
  width: 200px;}
相关推荐
GISer_Jing8 分钟前
React跨平台
前端·javascript
qq_544329178 分钟前
从0学习React(4)---更新组件状态setState
前端·学习·react.js
@山海@15 分钟前
React 中的无限滚动加载数据实现
前端·javascript·react.js
掘金安东尼44 分钟前
上周前端发生哪些新鲜事儿? #382
前端·javascript·面试
Easonmax1 小时前
【HTML5】html5开篇基础(5)
前端·html·html5
_斯洛伐克1 小时前
关于vue2+uniapp+uview+vuex 私募基金项目小程序总结
前端·小程序·uni-app
zpjing~.~1 小时前
uniapp中h5环境添加console.log输出
前端·javascript·uni-app
wang_book1 小时前
uniapp学习(002 常用的内置组件)
前端·学习·微信小程序·小程序·uni-app·node.js·vue
Yz前端知识1 小时前
为什么vue加载select大量数据会使页面造成卡顿
前端·javascript·vue.js
yr10192 小时前
XSS(内含DVWA)
前端·xss