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;}
相关推荐
蜗牛快跑2132 小时前
前端正在被“锈”化
前端·代码规范
Jet_closer_burning4 小时前
微信小程序中遇到过的问题
前端·微信小程序·小程序
掘金酱5 小时前
稀土掘金社区2024年度影响力榜单正式公布
android·前端·后端
Keven__Java5 小时前
Java开发-后端请求成功,前端显示失败
java·开发语言·前端
轻口味5 小时前
【每日学点鸿蒙知识】渐变效果、Web组件注册对象报错、深拷贝list、loadContent数据共享、半屏弹窗
前端·list·harmonyos
老K(郭云开)5 小时前
最新版Chrome浏览器加载ActiveX控件技术——alWebPlugin中间件V2.0.28-迎春版发布
前端·chrome·中间件
轻口味5 小时前
【每日学点鸿蒙知识】子窗口方向、RichEdit不居中、本地资源缓存给web、Json转对象丢失方法、监听状态变量数组中内容改变
前端·缓存·harmonyos
我是苏苏5 小时前
Web开发:ORM框架之使用Freesql的分表分页写法
前端·数据库·sql
m0_674031436 小时前
React - useContext和深层传递参数
前端·javascript·react.js
刺客-Andy6 小时前
React 第二十节 useRef 用途使用技巧注意事项详解
前端·javascript·react.js·typescript·前端框架