我尝试在mediaQuery和
中使用scss变量
我想在$ min
中添加1px
代码是这样的
我在代码中标记�表示发生错误
$mobile: "400px" !default; // sm
$phablet: "550px" !default; // md
$tablet: "750px" !default; // wmd
$desktop: "1000px" !default; // lg
$desktophd: "1200px" !default; // wlg
$full: "9999px" !default;
$null: "0px" !default;
@mixin response($max:9999px,$min:0px) {
@media only screen and (max-width: $max) and (min-width: $min + 1px) {//�
@content;
}
}
@include response ($full,$mobile) {
.myPage__myProducts > .col:nth-child(3n + 1){
margin-left: 0;
}
}
将其转换为css“ 400px1px”我想要401px
我怎么可能呢?