2016-09-28 10 views
-2

を教えてください誰もが変数オペレーターミックスイン、およびパーシャルを使用する方法についてについてSCSSと基本を、説明できますか?SCSS変数に

+1

理由だけでドキュメントを読んでいませんか? http://sass-lang.com/documentation/file.SASS_REFERENCE.html –

答えて

0
$color: red; // variable 

%button-default { // placeholder (doesn't generate css) 
    color: $color; 
} 

@mixin button() { // mixin 
    @extend %button-default; // get placeholder styles 

    @content; 
} 

button { 
    @include button() { // call mixin and pass content to it 
     font-size: 16px; 
    } 
} 

a { 
    @include button(); // just call mixin 
} 

Demo

SCSS利用ゴクゴクをコンパイルするには、イサキ、WebPACKのなど

関連する問題