在Foundation 5.0.2及更高版本中,它不使用xlarge和xxlarge网格大小。他们在之前的5.0.0和5.0.1版本中工作。
因此,当从基础进入css文件时,它只会显示小,中,大网格尺寸。
显然,没有版本的Foundation 5具有xlarge和xxlarge块网格。
有没有办法让这些再次起作用?
我去了他们的网站并下载了最新的5.1.1,它在foundation.css中遇到了同样的问题。
我自己用Sass构建它,并尝试手动添加覆盖变量:
// Here we define the lower and upper bounds for each media size
$small-range: 0em, 40em // 0, 640px
$medium-range: 40.063em, 64em // 641px, 1024px
$large-range: 64.063em, 90em // 1025px, 1440px
$xlarge-range: 90.063em, 120em // 1441px, 1920px
$xxlarge-range: 120.063em // 1921px
$screen: "only screen"
$landscape: "#{$screen} and (orientation: landscape)"
$portrait: "#{$screen} and (orientation: portrait)"
$small-up: $screen
$small-only: "#{$screen} and (max-width: #{upper-bound($small-range)})"
$medium-up: "#{$screen} and (min-width:#{lower-bound($medium-range)})"
$medium-only: "#{$screen} and (min-width:#{lower-bound($medium-range)}) and (max-width:#{upper-bound($medium-range)})"
$large-up: "#{$screen} and (min-width:#{lower-bound($large-range)})"
$large-only: "#{$screen} and (min-width:#{lower-bound($large-range)}) and (max-width:#{upper-bound($large-range)})"
$xlarge-up: "#{$screen} and (min-width:#{lower-bound($xlarge-range)})"
$xlarge-only: "#{$screen} and (min-width:#{lower-bound($xlarge-range)}) and (max-width:#{upper-bound($xlarge-range)})"
$xxlarge-up: "#{$screen} and (min-width:#{lower-bound($xxlarge-range)})"
$xxlarge-only: "#{$screen} and (min-width:#{lower-bound($xxlarge-range)}) and (max-width:#{upper-bound($xxlarge-range)})"
答案 0 :(得分:24)
在settings
文件中取消注释并将以下内容设置为true(对我来说这是第32行):
$include-xl-html-grid-classes: true;
然后重新编译,应该存在xlarge和xxlarge类。 (确保摆脱你的覆盖,以防万一发生冲突)
答案 1 :(得分:3)
在Foundation 6中已经更改了。在_settings.scss
中,您现在可以找到$breakpoint-classes
列表并添加所需的额外类。 e.g。
$breakpoint-classes: (small medium large xlarge);
答案 2 :(得分:0)
您必须同时使用这两个功能才能启用xlarge和xxlarge类
$breakpoints: {
small: 0,
medium: 640px,
large: 1024px,
xlarge: 1200px,
xxlarge: 1440px,
}
$include-xl-html-grid-classes: true;
$breakpoint-classes: (small medium large xlarge xxlarge);