sass 常用备忘案例详解

发布时间:2022-04-17 发布网站:脚本宝典
脚本宝典收集整理的这篇文章主要介绍了sass 常用备忘案例详解脚本宝典觉得挺不错的,现在分享给大家,也给大家做个参考。

一、变量

所有变量以$开头

$font_Size: 12px;
.container{
    font-size: $font_size;
}

如果变量嵌套在字符串中,需要写在#{}中

$side : left;
.rounded {
    border-#{$side}: 1px solid #000;
}

二、嵌套

层级嵌套

.container{
    display: none;
    .header{
        width: 100%;
    }
}

属性嵌套,注意,border后需要加上冒号:

.container {
    border: {
        width: 1px;
    }
}

 可以通过&引用父元素,常用在各种伪类

.link{
    &:hover{ 
        color: green;
    }  
}

三、mixin

简单理解,是可以重用的代码块,通过@include 命令

// mixin
@mixin focus_style {
    outline: none;
}
div {
    @include focus_style; 
}

编译后生成

div {
  outline: none; }

还可指定参数、缺省值

// 参数、缺省值
@mixin the_height($h: 200px) {
        height: $h;
}
.box_default {
        @include the_height;
}
.box_not_default{
        @include the_height(100px);
}

编译后生成

.box_default {
  height: 200px; }

.box_not_default {
  height: 100px; }

四、继承

通过@extend,一个选择器可以继承另一个选择器的样式。例子如下

// 继承
.class1{
        float: left;
}
.class2{
        @extend .class1;
        width: 200px;
}

编译后生成

.class1, .class2 {
  float: left; }

.class2 {
  width: 200px; }

五、运算

直接上例子

.container{
        posITion: relative;
        height: (200px/2);
        width: 100px + 200px;
        left: 50px * 2;
        top: 50px - 10px;
}

编译后生成

.container {
  position: relative;
  height: 100px;
  width: 300px;
  left: 100px;
  top: 40px; }

插入文件

用@import 来插入外部文件

@import "outer.scss";

也可插入普通css文件

@import "outer.css";

自定义函数

通过@function 来自定义函数

@function higher($h){
        @return $h * 2;
}
.container{
        height: higher(100px);
}

编译后输出

.container {
  height: 200px; 
}

注释

两种风格的注释

// 单行注释,编译后消失
/* 标准的CSS注释,会保留到编译后的代码中 */

如果重要的注释,压缩编译后还想保留,可在 /* 后面加上 !

/*!
重要注释,压缩编译也不会消失
*/

参考:

http://www.ruanyifeng.com/blog/2012/06/sass.html

到此这篇关于sass 常用备忘案例详解的文章就介绍到这了,更多相关sass 常用备忘内容请搜索脚本宝典以前的文章或继续浏览下面的相关文章希望大家以后多多支持脚本宝典!

脚本宝典总结

以上是脚本宝典为你收集整理的sass 常用备忘案例详解全部内容,希望文章能够帮你解决sass 常用备忘案例详解所遇到的问题。

如果觉得脚本宝典网站内容还不错,欢迎将脚本宝典推荐好友。

本图文内容来源于网友网络收集整理提供,作为学习参考使用,版权属于原作者。
如您有任何意见或建议可联系处理。小编QQ:384754419,请注明来意。
标签: