我第一次使用singularitygs。我想知道如何删除左右边距(排水沟)?就像 960gs 中的 alpha/omega 选项一样。有这样的吗?
谢谢你。我知道$位置。我没有正确描述我的问题
所以下面的场景:
<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;
}
}