css susy网格系统

Posted

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了css susy网格系统相关的知识,希望对你有一定的参考价值。



@import "susy";
$col-nums: 12;

$susy: (
  columns: $col-nums,
  gutters: 1/4,
  gutter-position: inside,
  flow: rtl,
  container: 90%
);

.row {
 @include clearfix();  
}

@include border-box-sizing;

[class*="c-"] {
  @include gutters;
  float: left;
}

@for $i from 1 through $col-nums {
  .c-#{$i} {
     width: span($i of 12);
  }
}


.row {
  *zoom: 1;
}
.row:before, .row:after {
  display: table;
  content: '';
  line-height: 0;
}
.row:after {
  clear: both;
}

*, *:before, *:after {
  -moz-box-sizing: border-box;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
}

[class*="c-"] {
  padding-right: 0.83333%;
  padding-left: 0.83333%;
  float: left;
}

.c-1 {
  width: 8.33333%;
}

.c-2 {
  width: 16.66667%;
}

.c-3 {
  width: 25%;
}

.c-4 {
  width: 33.33333%;
}

.c-5 {
  width: 41.66667%;
}

.c-6 {
  width: 50%;
}

.c-7 {
  width: 58.33333%;
}

.c-8 {
  width: 66.66667%;
}

.c-9 {
  width: 75%;
}

.c-10 {
  width: 83.33333%;
}

.c-11 {
  width: 91.66667%;
}

.c-12 {
  width: 100%;
}

以上是关于css susy网格系统的主要内容,如果未能解决你的问题,请参考以下文章

scss Bootstrap网格,使用Susy和include-media

html 了解CSS网格系统//本文的基本网格系统//了解SitePoint上的CSS网格系统:http://www.sitepoin

css [简单响应网格]简单响应网格系统#css #grid #responsive

markdown [CSS Grid Cheatsheet] CSS网格布局为CSS引入了一个二维网格系统:网格可用于布局主要页面区域或小

CSS 基础CSS与972px网格系统

需要:CSS 网格系统和折叠边距