我想创建一个 1200 像素的固定非灵活非常该死的静态网格。所以我发现,我需要 90 像素的列宽、12 列、10 像素的装订线和 1200 像素的最大宽度。
好吧..以下是我的设置,它给了我一个错误“无效的空操作:11 次空”
$susy: (
flow: ltr,
math: static,
output: float,
gutter-position: after,
container: auto,
container-position: center,
columns: 12,
gutters: 10px,
column-width: 90px,
global-box-sizing: content-box,
last-flow: to,
debug: (
image: show,
color: rgba(#66f, .25),
output: overlay,
toggle: top right,
),
use-custom: (
background-image: true,
background-options: false,
box-sizing: true,
clearfix: false,
rem: true,
)
);
样式.scss>
@import "grids";
body{
@include container($susy);
max-width: 1200px;
border: solid thin red;
height:10px;
}