gpt4 book ai didi

css - 将媒体查询放入mixin

转载 作者:技术小花猫 更新时间:2023-10-29 11:45:30 25 4
gpt4 key购买 nike

我有很多 css 文件和很多次:

@media all and (max-width: 400px), (orientation: portrait) {
....//In each file different style that relevant to the component the file represnt
}

我正在使用手写笔。
有一天,我的老板要求我将媒体查询更改为:

@media all and (max-width: 400px), (max-height: 400px) {
....
}

现在我需要搜索所有文件并替换为新的媒体查询。

是否有任何选项可以将此媒体查询放入 mixin 或其他东西中?

最佳答案

取自question I answered previously .这是我使用的技巧:

variables.styl

smartphoneWidth = 748px
tabletWidth = 1012px

mqSmartphone = "only screen and (max-width: " + smartphoneWidth + ")"
mqTablet = "only screen and (max-width: " + tabletWidth + ")"

现在在您可以使用的其他手写笔文件中:

@media mqSmartphone
// Styles go here

@media mqTablet
// Styles go here

虽然仍然很丑,但我觉得它比使用 unquote() 稍微优雅一些​​

关于css - 将媒体查询放入mixin,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/15596951/

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