我有这样的设置:
$susy: (
columns: 8,
gutters: 1/4,
global-box-sizing: border-box,
);有时我需要不同的排水沟,而不是1/4。
例如,请参见图像:

守则如下:
.wrap {
@include clearfix;
@include container (500px);
.box-1 {
@include span(4 of 8);
}
.box-2 {
@include span(4 of 8 last);
}
.box-3 {
@include span(4 of 8 wide no-gutter);
}
.box-4 {
@include span(4 of 8 last);
}
.box-5 {
@include span(3.95 of 8 wide no-gutter);
}
.box-6 {
@include span(4 of 8 last);
}
}我尝试过,但没有成功:
@include span(4 of 8 wide (gutter-override: 2px));我找到了一种方法来修复它,但如果它是正确的,就不会了。
@include span(3.95 of 8 wide no-gutter);谢谢
发布于 2015-06-04 16:30:57
您可以这样更改布局
@include with-layout(12 1/8 fluid float after) {
.box-5 {
@include span(2 of 12);
}
.box-6 {
@include span(10 of 12 last);
}
}其中1/8是沟槽宽度。
发布于 2015-06-08 08:55:12
另一种解决办法是:
.box-5 {
float:left;
width: span(4 of 8 wide) - 1%;
}
.box-6 {
float:right;
width: span(4 of 8);
}https://stackoverflow.com/questions/30649237
复制相似问题