@mixin指令用於定義混入,它包括任選的變數和引數中的mixin名稱後。
範例
下面的例子演示了在SCSS檔案使用@mixin:
sample.html
<html>
<head><meta charset="utf-8"> <title> Mixin範例-www.tw511.com</title>
<link rel="stylesheet" type="text/css" href="sample.css"/>
</head>
<body>
<div class="cont">
<h1>Example using include</h1>
<h3>Directive is used to define the Mixins, it includes variables and argument optionally.</h3>
</div>
</body>
</html>
接下來,建立檔案 sample.scss。
sample.scss
@mixin style {
.cont{
color: #77C1EF;
}
}
@include style;
可以告訴SASS監視檔案,並隨時使用下面的命令更新SASS檔案來修改CSS:
sass --watch C:\Ruby22-x64\sample.scss:sample.css
接著執行上面的命令,它會自動建立 sample.css 檔案,下面的程式碼:
sample.css
.cont {
color: #77C1EF;
}
輸出結果
讓我們來執行以下步驟,看看上面的程式碼工作:
儲存上面的html程式碼在 sample.html 檔案中。
在瀏覽器中開啟該HTML檔案,輸出如下得到顯示。