初めてsingularitygsを使用しています。左右の余白 (ガター) を削除する方法を知りたいですか? 960gs のアルファ/オメガ オプションのように。そのようなものはありますか?
ありがとうございました。$location を認識しています。問題を適切に説明しなかった
したがって、次のシナリオ:
<article>
<div class="teaser"></div>
<div class="teaser"></div>
<div class="teaser"></div>
<div class="teaser"></div>
</article>
<sidebar></sidebar>
$grids: 12;
$gutters: .2;
article {
@include grid-span(8);
}
sidebar {
@include grid-span(4, 9);
}
.teaser {
@include float-span(4, 1, 8);
&:nth-child(odd) {
// here i want to remove the right-margin - because otherwise the containers are not floating. dirty way would be: margin-right: 0 !important;
}
}