您好,登錄后才能下訂單哦!
這篇文章給大家分享的是有關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; } }
簡單理解,是可以重用的代碼塊,通過@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注釋,會保留到編譯后的代碼中 */
如果重要的注釋,壓縮編譯后還想保留,可在 /* 后面加上 !
/*! 重要注釋,壓縮編譯也不會消失 */
感謝各位的閱讀!關于“sass常用操作的示例分析”這篇文章就分享到這里了,希望以上內容可以對大家有一定的幫助,讓大家可以學到更多知識,如果覺得文章不錯,可以把它分享出去讓更多的人看到吧!
免責聲明:本站發布的內容(圖片、視頻和文字)以原創、轉載和分享為主,文章觀點不代表本網站立場,如果涉及侵權請聯系站長郵箱:is@yisu.com進行舉報,并提供相關證據,一經查實,將立刻刪除涉嫌侵權內容。