我如何应用他们似乎没有应用的第一个或最后一个关键字并不重要。
我有: $ susy :(列:12,列宽:60px,gutter-width:20px,grid-padding:$ grid-padding,container-style:static,gutter-position:split);
我试过了:
.more {
@include span(first 3 of 6);
}
.more {
@include span(3);
@include first;
}
结果总是:
width: 46.66667%;
float: left;
margin-left: 1.66667%;
margin-right: 1.66667%;
我希望左边距已被取消?我错过了什么?
答案 0 :(得分:1)
split
排水沟基于类似于960gs和其他模型的模型 - 其中排水沟的边缘没有移除。这使得你不需要需要 first
或last
个参数。否则,我不确定我看到使用分裂排水沟的优势。