标签: css sass offset susy-sass susy
我想使用Susy设置列,例如Bootstrap中的偏移列。
我尝试使用
@include span(4 at 4);
但这并不奏效。 我做错了什么?
答案 0 :(得分:20)
我刚刚发现了如何做到这一点。
有两个函数(或mixins)称为“push”和“pull”
@include push(4); @include pull(4);
而且确实如此:)