css 速记Sass延伸
Posted
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了css 速记Sass延伸相关的知识,希望对你有一定的参考价值。
// ----
// Sass (v3.3.0.rc.1)
// Compass (v0.13.alpha.10)
// ----
// add this mixin to your Sass file:
@mixin ext($name, $silent: false)
@if $silent == true
@extend %#{$name} !optional
@else
@extend .#{$name} !optional
// then you may extend other classes in a shorter format:
%foo
background: red
.bar
+ext(foo, true)
//instead of:
//@extend .foo !optional
.foo, .bar {
background: red;
}
.bar {
background: red;
}
以上是关于css 速记Sass延伸的主要内容,如果未能解决你的问题,请参考以下文章
CSS动画速记属性语法顺序
CSS CSS背景速记
CSS CSS字体速记
为啥这个 CSS 过渡速记不再起作用了?
css 背景图像速记
CSS字体速记中的正斜杠是啥意思?