0

见下文:

请点击此处查看图片,问题为 http://imgr.es/26LP

我不能用填充添加排水沟,因为我正在使用Paul Irish global box sizing

遵循我的代码:

    $susy: (
        columns: 12,
        gutters: 18/81,
        global-box-sizing: border-box,
        debug: (
            image: show,
        ),
   );

   .container-selector-sample {
       @include container(1170px);
   }

   .column-selector-sample {
       @include span(2);
       @include breakpoint(mobile){
           @include span(12);
       }
   }

   .column-selector-sample {
       @include span(3);
       @include breakpoint(mobile){
           @include span(12);
       }
   }

   .column-selector-sample {
       @include span(7);
       @include breakpoint(mobile){
           @include span(12);
       }

   .column-selector-sample,
   .column-selector-sample {
       @include last;       
   }
4

1 回答 1

1

Susy 有一个关键字!请参阅和的文档narrowwidewider。在这种情况下,您要使用wide

@include span(3 wide);
于 2014-08-01T06:50:08.957 回答