Susy 2个排水沟没有出现

时间:2014-10-04 23:44:31

标签: susy-sass susy

出于某种原因,我没有看到在Susy 2中出现排水沟的任何想法。为什么这些可能不会出现?我有我的地图集,默认情况下,跨度不应该选择装订线设置吗?

  section{
  @include full;
  @include span(6 at 4 of 12 isolate);
   @include gutters();
  .serviceBox{
   @include span(first 2 of 6);
  // display: inline-block;
    height:span(2 of 6);
  }//serviceBox
  .volunteerBox{
    @include span(2 of 6);
    display: inline-block;
    height:span(2 of 6);
  }//serviceBox
    .partnerBox{
       @include span(last 2 of 6);
  cursor: pointer;
  position: relative;
    display: inline-block;
    height:span(2 of 6);
  }//serviceBox

地图

$susy: 

 columns: 12,
  container: 100%,
  gutters: 1/4,
  gutter-position: inside,
  debug:(
image: hide,
)

enter image description here

1 个答案:

答案 0 :(得分:1)

您将gutter-position设置为inside,这意味着排水沟在跨度上显示为填充。从我所知,看起来你的填充就在那里 - 也许你期待利润?您需要使用beforeaftersplit排水沟才能看到跨距之间的空间。您可以在设置中全局更改,也可以在本地调用范围(span(2 of 6 after))。