我为 susy 设置了全局设置:
$susy: (
columns: 8,
gutters: 1/4,
);
我想覆盖排水沟几个跨度
.tile-left {
@include span(1 of 2 1px);
}
.tile-right {
@include span(1 at 2 of 2 1px);
}
生成的css
.tile-left {
width: 44.44444%;
float: left;
margin-right: 11.11111%;
}
.tile-right {
width: 44.44444%;
float: right;
margin-right: 0;
}
我也尝试过这些,但这些似乎也不起作用
@include span(1 of 2 no-gutters);
&
@include span(1 of 2 (gutter-override: 1px));