Using Susy via CodeKit, I run into a strange situation:
If I use:
.example { @include span (first); }
or
.example { @include span (last); }
Susy works as expected according to the documents. However, when using e.g.
.example { @include span (4 at 5 of 12); }
a 4 column box is made, but it is not placed in column 5, but simply floating left.
However, when using e.g. .example { @include span (3 at 8 of 12); }
the box is 3 columns, as expected, but starts floating right instead of in column 8. In other words, placing an element in a certain column doesn't work. Replacing the susy mixin with a simple margin-left works fine, but that isn't the purpose of using a grid system like Susy.
I have contacted the developer of CodeKit, but he doesn't think it's a CodeKit problem with Susy. I have tested it using the code of some online classes and it remains working oddly.
What can this be? Are there any prerequisites to placing elements in a certain column using Susy? Do I miss something here?