作者热门文章
- html - 出于某种原因,IE8 对我的 Sass 文件中继承的 html5 CSS 不友好?
- JMeter 在响应断言中使用 span 标签的问题
- html - 在 :hover and :active? 上具有不同效果的 CSS 动画
- html - 相对于居中的 html 内容固定的 CSS 重复背景?
我设置了几个断点:
$breakpoint-tiny : 0 767px;
$breakpoint-small : 768px 991px ;
$breakpoint-medium : 992px 1229px;
$breakpoint-large : 1230px;
我在断点文档中看到
You can also write OR media queries, allowing you to write multiple different basic or compound media queries and have them apply if any of the sets of queries match.
我想做的是在我的代码中需要时使用这些或查询来定位多个断点。例如:
@include breakpoint($breakpoint-medium, $breakpoint-large){
.mobile-navigation{display: none;}
}
这可能吗?
最佳答案
您应该传递一个参数(一个列表),而不是两个。
试试这个。
@include breakpoint(($breakpoint-medium, $breakpoint-large)) {
.mobile-navigation{display: none;}
}
我用括号将逗号分隔的变量括起来。现在 Sass 会将它们视为一个列表,而不是两个参数。
关于media-queries - 断点 Sass : Or Queries for Multiple Breakpoints,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/49984252/
我是一名优秀的程序员,十分优秀!