博客
关于我
强烈建议你试试无所不能的chatGPT,快点击我
sass:常用备忘
阅读量:6237 次
发布时间:2019-06-22

本文共 1626 字,大约阅读时间需要 5 分钟。

一、变量

所有变量以$开头

$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://lrkia.baihongyu.com/

你可能感兴趣的文章
PHP 超级全局变量
查看>>
SQL的优化
查看>>
CodeIgniter HMVC 扩展
查看>>
Mybatis-Plus使用全解
查看>>
XMind浏览视图,你必须会使用
查看>>
OSChina 周日乱弹 ——会爬墙的不仅仅是壁虎还有班主任
查看>>
OSChina 周日乱弹 —— 小云云生日快乐
查看>>
负载均衡原理与实践详解 第一篇
查看>>
前端那些事之框架封装基础篇
查看>>
mysqld服务器cpu/iowait瞬间出现峰值的问题
查看>>
tornado的CURD操作
查看>>
Lambda对方法和构造器的引用
查看>>
ABBYY FineReader 12PDF选项卡之保存模式
查看>>
Python如何自定义模块?Python基础教程,第十讲,自定义模块
查看>>
monkeysocks开发日志--TCP协议分析及架构规划
查看>>
svn备份、转移、安装到新服务器
查看>>
初识systemd-使用篇
查看>>
全球BGP路由表浏览
查看>>
Hibernate持久化技术实例讲解
查看>>
推荐一款轻量级的linux系统和网络监控工具
查看>>