gpt4 book ai didi

css - 如何在 Sass 中同时使用@support 和@media?

转载 作者:行者123 更新时间:2023-11-28 02:52:27 25 4
gpt4 key购买 nike

这两个语句在 Sass 中似乎都是有效的:

@supports (display: -ms-grid) {
@media screen and (min-width: $breakpoint-sm) {
display: block;
}
}

@media screen and (min-width: $breakpoint-sm) {
@supports (display: -ms-grid) {
display: block;
}
}

有什么解决方案可以同时使用两者吗?类似于 @media screen and (min-width: $breakpoint-sm) and @supports (display: -ms-grid) {...}?

最佳答案

这两个选项似乎都是有效的 SCSS

DEMO .

但是如果你想要 SASS,你需要去掉分隔符。

DEMO

$breakpoint-sm: 420px

@supports (display: -ms-grid)
@media screen and (min-width: $breakpoint-sm)
display: block

@media screen and (min-width: $breakpoint-sm)
@supports (display: -ms-grid)
display: block

关于css - 如何在 Sass 中同时使用@support 和@media?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/46609989/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com