How to off-set Columns in Susy Grid System?
Asked Answered
W

1

7

I want to Off-Set Columns using Susy, like off-setting columns in Bootstrap.

I tried to use

@include span(4 at 4);

But that doesn't work. What I'm doing wrong?

Wishful answered 28/9, 2014 at 0:2 Comment(0)
W
20

I just found out how to do this.

There is two functions (or mixins) called "push" and "pull"

@include push(4);
@include pull(4);

And that's really it :)

Wishful answered 28/9, 2014 at 21:15 Comment(2)
Are you applying this to the element that has the @include span(X of X), or to the child element?Frictional
@ChristianFazzini, Yes, I'm adding this to the element that is controlled by the @include span(x), so the element would look like this @include span(4); @include push(4)Wishful

© 2022 - 2024 — McMap. All rights reserved.