您的位置:MYSQL中文网 > sass控制指令 Sass 根指令

sass控制指令 Sass 根指令

2023-09-16 00:42 Sass教程

sass控制指令 Sass 根指令

sass控制指令

Sass控制指令是Sass的一种重要特性,它可以帮助我们更好地管理和控制CSS代码。它可以让我们使用条件语句、循环语句和函数来构建复杂的样式表。

Sass控制指令包括@if、@for、@each、@while和@mixin。这些控制指令都有自己的特定用途,并且可以帮助我们在CSS中实现一些复杂的功能。

// @if 条件语句 
@if $variable == true { 
    // CSS code here 
} 
// @for 循环语句 
@for $i from 1 through 10 { 
    // CSS code here 
} 
// @each 遍历语句 
@each $item in $list { 
    // CSS code here 
}  
// @while 循环语句  
$i: 6;   // 初始化循环计数器  
@while $i > 0 {   // 条件为真时执行循环体  

    // CSS code here

    $i: $i - 1;   // 更新循环计数器  

 }  

 // @mixin 混合语句  

 @mixin my-style {  

     color: #f00;  

     font-size: 12px;  

 }  

 .my-class {  

     @include my-style;    // 调用 mixin 语句,将 my-style 的样式应用到 .my-class 类上面。

 }  

Sass 根指令

描述

@ at-root 指令是嵌套规则的集合,它能够在文档的根位置创建样式块。

@ at-root(without:...)和@ at-root(with:...)

默认情况下, @ at-root 选择器不包括选择器。 通过使用 @ at-root ,我们可以将样式移动到嵌套指令之外。

例如,使用以下代码创建一个SASS文件:

@media print {
  .style {
    height: 8px;
    @at-root (without: media) {
      color: #808000;;
    }
  }

上面的代码将编译成CSS文件,如下所示:

@media print {
  .style {
    height: 8px;
    }
 }
.style {
   color: #808000;
}

例子

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

atroot.htm

<!doctype html>
<head>
	<title>At-root Example</title>
	<link rel="stylesheet" href="atroot.css" type="text/css" />
</head>
<body class="container">
    <h2>Example using at-root</h2>
    <p class="style">Lorem Ipsum is simply dummy text of the printing and typesetting industry.</p>
</body>
</html>

接下来,创建文件 atroot.scss

atroot.scss

h2{
color: #808000;
background-color: #DB7093;

@at-root {
.style{
	font-size: 20px;
	font-style: bold;
	color: #B8860B;
	}
	}
}

您可以通过使用以下命令让SASS查看文件,并在SASS文件更改时更新CSS:

sass --watch C:rubylibsassatroot.scss:atroot.css

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

atroot.css

h2 {
   color: #808000;
   background-color: #DB7093;
}
.style {
   font-size: 20px;
   font-style: bold;
   color: #B8860B;
}

输出

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

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

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

Sass rules and directives
阅读全文
以上是MYSQL中文网为你收集整理的sass控制指令 Sass 根指令全部内容。
声明:本站所有文章资源内容,如无特殊说明或标注,均为采集网络资源。如若本站内容侵犯了原著者的合法权益,可联系本站删除。
相关文章
© 2024 MYSQL中文网 mysqlcn.com 版权所有 联系我们
桂ICP备12005667号-29 Powered by CMS