我在使用Susy 2的span mixin"wide"选项时遇到了一个问题。
我把我的阴沟位置设置为"之前"。
我有两列相邻的
.container{
@include container;
}
.branding{
@include span(3 first);
}
.nav-primary{
@include span(9 wide);
}
<div class='container'>
<div class='branding'>...</div>
<div class='nav-primary'>...</div>
</div>
我假设.nav primary的跨度设置为宽,它不应该包括左边距,但它确实包括了,因此打乱了布局。我可以将其重置为零,但我想知道我是否做错了什么。
感谢
我们不认为仅仅因为你想要它宽,你也不想要排水沟。我们确实提供了一个关键字,可以轻松清除排水沟。尝试span(9 wide no-gutters)
。