@@ -21,6 +21,11 @@ <h1 class="header-title">Flexbox Grid Mixins <span class="version">v.0.1.2</span
21
21
< li > < a href ="#License "> License</ a > </ li >
22
22
</ ul >
23
23
24
+ < ul class ="header-nav ">
25
+ < li > < a href ="https://github.com/thingsym/flexbox-grid-mixins " class ="btn "> GitHub</ a > </ li >
26
+ < li > < a href ="https://www.npmjs.com/package/flexbox-grid-mixins " class ="btn "> npm</ a > </ li >
27
+ </ ul >
28
+
24
29
</ div >
25
30
26
31
< h2 > Feature</ h2 >
@@ -79,9 +84,6 @@ <h3>CSS</h3>
79
84
display: -webkit-flex;
80
85
display: -ms-flexbox;
81
86
display: flex;
82
- -webkit-flex-flow: row nowrap;
83
- -ms-flex-flow: row nowrap;
84
- flex-flow: row nowrap;
85
87
margin: 0 -1%;
86
88
}
87
89
@@ -257,9 +259,6 @@ <h3>CSS</h3>
257
259
display: -webkit-flex;
258
260
display: -ms-flexbox;
259
261
display: flex;
260
- -webkit-flex-flow: row nowrap;
261
- -ms-flex-flow: row nowrap;
262
- flex-flow: row nowrap;
263
262
margin: 0 -1%;
264
263
}
265
264
@@ -420,7 +419,7 @@ <h3>3. Generate the grid columns</h3>
420
419
421
420
< h2 id ="Mixins-Reference "> Mixins Reference</ h2 >
422
421
423
- < h3 class ="reference "> < span class ="small "> @include</ span > < span class ="big "> grid</ span > ($display: flex, $flex-flow: row nowrap , $justify-content: null, $align-items: null, $align-content: null, $gutter: null, $grid-type: skeleton);</ h3 >
422
+ < h3 class ="reference "> < span class ="small "> @include</ span > < span class ="big "> grid</ span > ($display: flex, $flex-direction: null, $flex-wrap: null, $flex-flow: null , $justify-content: null, $align-items: null, $align-content: null, $gutter: null, $grid-type: skeleton);</ h3 >
424
423
425
424
< p > Define the grid container.</ p >
426
425
@@ -438,9 +437,21 @@ <h3 class="reference"><span class="small">@include</span> <span class="big">grid
438
437
< td > generate a block-level or an inline-level grid container</ td >
439
438
</ tr >
440
439
< tr >
440
+ < td > $flex-direction</ td >
441
+ < td > null</ td >
442
+ < td > null | row | row-reverse | column | column-reverse</ td >
443
+ < td > </ td >
444
+ </ tr >
445
+ < tr >
446
+ < td > $flex-wrap</ td >
447
+ < td > null</ td >
448
+ < td > null | nowrap | wrap | wrap-reverse</ td >
449
+ < td > </ td >
450
+ </ tr >
451
+ < tr >
441
452
< td > $flex-flow</ td >
442
- < td > row nowrap * </ td >
443
- < td > [row | row-reverse | column | column-reverse] [nowrap | wrap | wrap-reverse]</ td >
453
+ < td > null </ td >
454
+ < td > null | [row | row-reverse | column | column-reverse] [nowrap | wrap | wrap-reverse]</ td >
444
455
< td > a shorthand for setting the flex-direction and flex-wrap properties</ td >
445
456
</ tr >
446
457
< tr >
@@ -475,13 +486,11 @@ <h3 class="reference"><span class="small">@include</span> <span class="big">grid
475
486
</ tr >
476
487
</ table >
477
488
478
- * The same initial value as the property of Flexbox
479
-
480
489
< h3 class ="reference "> < span class ="small "> @include</ span > < span class ="big "> grid-col</ span > ($col: null, $grid-columns: 12, $col-offset: null, $gutter: null, $condensed: false, $align-self: null, $flex-grow: 0, $flex-shrink: 1, $flex-basis: auto, $order: null, $grid-type: skeleton, $last-child: false);</ h3 >
481
490
482
491
< p > Generate the grid columns.</ p >
483
492
484
- < p > The use of CSS cal () is experimental stage. If $col sets < code > <number></ code > and $gutter sets < code > <length></ code > , use CSS cal ().</ p >
493
+ < p > The use of CSS calc () is experimental stage. If $col sets < code > <number></ code > or < code > <width> </ code > and $gutter sets < code > <length></ code > , use CSS calc ().</ p >
485
494
486
495
< table >
487
496
< tr >
@@ -564,7 +573,7 @@ <h3 class="reference"><span class="small">@include</span> <span class="big">grid
564
573
</ tr >
565
574
</ table >
566
575
567
- * The same initial value as the property of Flexbox
576
+ < p > * The same initial value as the property of Flexbox</ p >
568
577
569
578
< h3 class ="reference "> < span class ="small "> @include</ span > < span class ="big "> grid-margin</ span > ($margin: null, $margin-top: null, $margin-right: null, $margin-bottom: null, $margin-left: null);</ h3 >
570
579
0 commit comments