I have a three divs layout and want to place them in one line:
Main | Aside | Box
main {@include span (8 of 17);
aside {@include span (4 at 9 of 17);
.box {@include span (2 at 13 of 17) @include pull(2);
I dont get the .box to leave space between itself and aside. With the code above the .box will be placed over main. Without the
@include pull(2)
it will be placed direct right. Any suggestions?