gpt4 book ai didi

css - 媒体查询 sass 按分辨率拆分

转载 作者:行者123 更新时间:2023-11-28 11:19:01 29 4
gpt4 key购买 nike

有没有办法根据媒体查询解析去除 sass 样式?这是我的 sass 文件。我想将它拆分为 blue300.css 和 blue480.css?

.red {


color: red;
}
@media only screen and (max-width: 300px) {
.blue {
color: red;
}
}

.blue {
color: blue;
}

@media only screen and (max-width: 480px) {
.blue {
margin: 10px;
}
}

最佳答案

我认为您希望实现类似于 Jake Archibald 为 IE 创建单独的 sass 文件的方法。

IE Friendly CSS with Sass

在您的评论中,您提到为不支持媒体查询的不同分辨率创建样式表。我不建议这样做,只为不支持媒体查询的浏览器创建一个默认样式表。

关于css - 媒体查询 sass 按分辨率拆分,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/21633755/

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