It doesn't matter how I apply first or last keywords they do do not seem to be being applied.
I have: $susy: (columns: 12, column-width: 60px, gutter-width: 20px, grid-padding: $grid-padding, container-style: static, gutter-position: split);
I have tried :
.more {
@include span(first 3 of 6);
}
.more {
@include span(3);
@include first;
}
The result is always:
width: 46.66667%;
float: left;
margin-left: 1.66667%;
margin-right: 1.66667%;
I would expect the the left margin to have been taken off? What am I missing please?