Sass 定义Mixin

2018-12-30 15:54 更新

描述

@mixin 指令用于定义mixin,它可选地包括mixin名称后面的变量和参数。

例子

以下示例演示如何在SCSS文件中使用 @mixin :

sample.html

<html>
<head>
   <title> Mixin example of sass</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:\ruby\lib\sass\sample.scss:sample.css

接下来执行上面的命令,它将自动创建 sample.css 文件,代码如下:

sample.css

.cont {
  color: #77C1EF;
  }

输出

让我们执行以下步骤,看看上面的代码如何工作:

  • 将上述html代码保存在 sample.htm 文件中。

  • 在浏览器中打开此HTML文件,将显示如下输出。

Sass rules and directives
以上内容是否对您有帮助:
在线笔记
App下载
App下载

扫描二维码

下载编程狮App

公众号
微信公众号

编程狮公众号