我使用sass进行样式化,我有一个主sass文件,其中包含各种不同scss文件的@imports 媒体查询有条件地包含。
电话
所有/大多数平板电脑(人像),其行为类似于手机
@import "global";
@media only screen and (min-width: 320px){
@import "styleguide";
@import "phone";
}
@media only screen and (min-device-width: 768px)
and (orientation: portrait){
}
@media only screen and (min-device-width: 768px)
and (orientation: landscape){
@import "tablet-styleguide";
@import "tablet";
}
答案 0 :(得分:1)
尝试像这样格式化导入(而不是在媒体查询中):
@import url(foo.css) screen and (min-width:320px);
@import url(bar.css) screen and (min-device-width:768px) and (orientation:portrait);
@import url(blah.css) screen and (min-device-width:768px) and (orientation:landscape);
答案 1 :(得分:0)
问题在于,我应该使用min-device-wdith
而不是min-width
。