gpt4 book ai didi

variables - 将媒体查询保存在变量中

转载 作者:行者123 更新时间:2023-12-04 14:15:14 25 4
gpt4 key购买 nike

是否可以将媒体查询保存为变量?

这不起作用:

$max: @media (max-width: 980px) and (min-width: 768px);

我不是在寻找如何保存最大宽度和最小宽度,而是整个字符串。

最佳答案

使用这样的东西

  @mixin respondTo($media) {
@if $media == smallScreen {
@media only screen and (max-width: $screenSmall - 1) { @content; }
} @else if $media == mediumScreen {
@media only screen and (max-width: $screenMedium) and (min-width: $screenSmall) { @content; }
} @else if $media == largeScreen {
@media only screen and (min-width: $screenXlarge) { @content; }
}
}

然后,您可以执行以下操作:
.products {
@include respondTo(smallScreen) {
width: 300px;
}

@include respondTo(mediumScreen) {
width: 700px;
}
}

关于variables - 将媒体查询保存在变量中,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/9829612/

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