2013-10-01 60 views
0

進口時使用zurb基礎3,因爲我需要舊的ie瀏覽器支持:( 我使用捆綁,所以我可以指定版本3.2安裝的基礎上的寶石使響應知名度類可用。如何定製在zurb基礎3

基金會app.scss的頂部有這些行:

// Comment out this import if you are customizing you imports below 
@import "foundation"; 
// ---------------------------------------- 
// Import specific parts of Foundation by commenting the import "foundation" 
// and uncommenting what you want below. You must uncomment the following if customizing 

,因爲我確實想定製我進口我已經註釋掉@import「基礎」行

這些線路似乎表明那他們必須使用粉底的網格:

//Must include next two for semantic grid to work 
@import "foundation/mixins/respond-to"; 
@import "foundation/mixins/semantic-grid"; 
@import "modular-scale"; 
@import "foundation/common/globals"; 

我認爲他們將包括必要的支持知名度類媒體的質疑,但是這看起來並非如此。當我爲一個元素添加一個「hide-for-small」的類時,無論看到輸出css,它都是可見的,這裏沒有mqs。

那麼,如何挑選出包含基礎3.2框架附帶的媒體查詢?

回答