sass 常用备忘案例详解(sassbide中国店)速看

随心笔谈9个月前发布 admin
207 00
🌐 经济型:买域名、轻量云服务器、用途:游戏 网站等 《腾讯云》特点:特价机便宜 适合初学者用 点我优惠购买
🚀 拓展型:买域名、轻量云服务器、用途:游戏 网站等 《阿里云》特点:中档服务器便宜 域名备案事多 点我优惠购买
🛡️ 稳定型:买域名、轻量云服务器、用途:游戏 网站等 《西部数码》 特点:比上两家略贵但是稳定性超好事也少 点我优惠购买

文章摘要

这篇文章介绍了如何使用混编(Mix-in)来重用代码块,并详细讲解了混编指令(如`@include`、`@extend`、`@function`)的使用方法。文章还讨论了变量的定义与嵌套使用,包括字符串中的变量需要使用`#{}`括起来。此外,教程还介绍了如何通过`@import`导入外部文件或普通CSS文件。文章还提到了混编函数的定义与调用,以及如何通过`@function`自定义样式规则。整体内容简明扼要,重点突出混编技术的核心应用与实际操作技巧。



所有变量以$开头

$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;
}
}

简单理解,是可以重用的代码块,通过@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;
}

两种风格的注释

// 单行注释,编译后消失

如果重要的注释,压缩编译后还想保留,可在

© 版权声明

相关文章