0
我正在使用手寫筆與bootstrap-stylus。這是我app.styl
代碼如何在不包含所有CSS但只包含@extends的情況下執行@import
@import "../../node_modules/bootstrap-stylus/lib/bootstrap.styl";
section
@extend .row
我運行一飲而盡後,我注意到,完成引導CSS是包括到目標app.css
。我想使用@extend
動態地包含.row rule
。我試圖得到的是這個..
section { //.row rules
zoom: 1;
margin-left: -20px;
}
這可能嗎?我錯過了什麼? SASS有可能嗎?
剛剛發現..筆確實有佔位選擇 '$一些,選擇{ 道具:值; } /* main.scss */ @import'partial'; .some-class {@extend $ some-selector; }' –