@在 SASS 中包含 vs @扩展
@include 关键字用于包含编写在 mixin 块中的代码。 @mixin 用于对需要多次重用的 css 代码进行分组。而在 SASS 中使用 @extend 从另一个 css 选择器继承(共享)属性。 @extend 在元素几乎相同或完全相同时最有用。 两者的主要区别在于各自编译的 CSS 文件。
-
@include example SCSS file:
html @mixin text { color: black; font-size: 30px; font-weight: bold; } .hello{ @include text; } .world{ @include text; }
Mixin 在 CSS 中的所有类上复制样式。 编译 CSS 文件:
```html .hello{ color: black; font-size: 30px; font-weight: bold; } .world{ color: black; font-size: 30px; font-weight: bold; }
```
如果需要,Mixin 也可以接受参数,而使用 extend 则不可能。 欲了解@mixin 的更多详情,请访问此处
-
@extend example: Here in this example, the two buttons will share the general properties for a button but they differ in background color only so using extend in cases like these where the elements are almost the same and only differ some properties using @extend is a good idea. SCSS file:
```html %button-format { padding: 10px 20px; border-radius: 15px; color: black; }
.toolbar-button { @extend %button-format; background-color: lightpink;
&:hover { background-color: rgb(155, 106, 114); } }
.status-bar-button { @extend %button-format; background-color: lightblue;
&:hover { background-color: blue; } } ```
编译好的 CSS 文件:
```html .status-bar-button, .toolbar-button { padding: 10px 20px; border-radius: 15px; color: black; }
.toolbar-button { background-color: lightpink; } .toolbar-button:hover { background-color: #9b6a72; }
.status-bar-button { background-color: lightblue; } .status-bar-button:hover { background-color: blue; }
```
结论: SASS 是一种非常棒的样式表语言,它的@include 和@extend 这两个特性都有优点和缺点尽管如此,如果在确切的情况下使用,它们可以被证明是 SASS 最好的工具。
版权属于:月萌API www.moonapi.com,转载请注明出处