Susy网格高度相同

时间:2016-02-15 16:11:56

标签: css susy susy-sass

我有这个可疑的网格,我想让它的所有列都高度相同,我尝试添加display:table技术,但我无法让它工作。我尝试了here中发布的建议,但这也没有把我带到任何地方,我创建了这个codepen,看看是否有人可以看看。

@import "susy";

$susy: (
  columns: 12,
  gutters: 0,
);

.container{
  @include container(600px center);
}
.mTable {
  display:table;
  > .col {
 @include span(6);
    display:table-cell;
    &:nth-child(odd){
    background-color:gray;
  }
    &:nth-child(even){
    background-color:lightgray;
  }
  }
  
}

0 个答案:

没有答案
相关问题