【发布时间】:2017-06-14 13:46:43
【问题描述】:
如何用 sass 断点实现这个媒体查询? ...
@media only screen
and (min-device-width: 375px)
and (max-device-width: 667px)
and (-webkit-min-device-pixel-ratio: 2)
and (orientation: landscape)
我已经尝试过了,但它也会影响桌面版本...
$mobileLandscape: screen and (min-device-width: 375px) and (max-device-width: 667px) and (-webkit-min-device-pixel-ratio: 2) and (orientation: landscape);
@include breakpoint($mobileLandscape) {
}
【问题讨论】:
标签: sass media-queries susy-compass susy breakpoint-sass