Skip to content

Commit eafbb6a

Browse files
committed
docs: update index.html
1 parent 7ff6d0c commit eafbb6a

File tree

1 file changed

+55
-4
lines changed

1 file changed

+55
-4
lines changed

docs/index.html

Lines changed: 55 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -467,6 +467,7 @@ <h3>LibSass</h3>
467467
<li><a href="example/example.html">Flexbox Grid Mixins Example</a></li>
468468
<li><a href="example/holy-grail-layout.html">Holy Grail Layout - Using Flexbox Grid Mixins</a></li>
469469
<li><a href="example/responsive.html">Responsive web design - Using Flexbox Grid Mixins</a></li>
470+
<li><a href="example/gap.html">Gap (grid-gap) css property</a></li>
470471
<li><a href="example/auto-margin.html">Auto margin</a></li>
471472
<li><a href="example/box-sizing.html">Box Sizing using Default Values</a></li>
472473
<li><a href="example/stack.html">Stack</a></li>
@@ -482,6 +483,7 @@ <h3>Dart Sass</h3>
482483
<li><a href="example-dart-sass/example.html">Flexbox Grid Mixins Example</a></li>
483484
<li><a href="example-dart-sass/holy-grail-layout.html">Holy Grail Layout - Using Flexbox Grid Mixins</a></li>
484485
<li><a href="example-dart-sass/responsive.html">Responsive web design - Using Flexbox Grid Mixins</a></li>
486+
<li><a href="example-dart-sass/gap.html">Gap (grid-gap) css property</a></li>
485487
<li><a href="example-dart-sass/auto-margin.html">Auto margin</a></li>
486488
<li><a href="example-dart-sass/box-sizing.html">Box Sizing using Default Values</a></li>
487489
<li><a href="example-dart-sass/stack.html">Stack</a></li>
@@ -624,7 +626,7 @@ <h3 class="reference">Default Values (global settings)</h3>
624626
</tr>
625627
</table>
626628

627-
<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);</h3>
629+
<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, $gap: null, $row-gap: null, $column-gap: null);</h3>
628630

629631
<p>Define the grid container.</p>
630632

@@ -689,12 +691,33 @@ <h3 class="reference"><span class="small">@include</span> <span class="big">grid
689691
<td>$gutter</td>
690692
<td>null</td>
691693
<td>null | &lt;<a href="http://www.w3.org/TR/CSS21/syndata.html#percentage-units" target="_blank">percentage</a>&gt; | &lt;<a href="http://www.w3.org/TR/CSS21/syndata.html#length-units" target="_blank">length</a>&gt;</td>
692-
<td>define gutter. <code>null</code> is no margin of both ends of the grid. <code>&lt;percentage&gt;</code> generate a margin of both ends of the grid. <code>&lt;length&gt;</code> generate a margin of both ends of the grid (<code>&lt;length&gt;</code> is experimental stage).</td>
694+
<td>define gutters using margin CSS property. <code>null</code> is no margin of both ends of the grid. <code>&lt;percentage&gt;</code> generate a margin of both ends of the grid. <code>&lt;length&gt;</code> generate a margin of both ends of the grid (<code>&lt;length&gt;</code> is experimental stage).</td>
693695
<td class="example"><a href="example/example.html#flexbox-grid-mixins-example"><i class="fas fa-external-link-alt"></i></a> <a href="example/unit-set.html"><i class="fas fa-external-link-alt"></i></a></td>
694696
</tr>
697+
<tr>
698+
<td>$gap</td>
699+
<td>null</td>
700+
<td>null | &lt;<a href="http://www.w3.org/TR/CSS21/syndata.html#percentage-units" target="_blank">percentage</a>&gt; | &lt;<a href="http://www.w3.org/TR/CSS21/syndata.html#length-units" target="_blank">length</a>&gt;</td>
701+
<td>define gutters using <a href="https://developer.mozilla.org/en-US/docs/Web/CSS/gap">gap CSS property</a>. <code>null</code> is no gaps between rows and columns. <code>&lt;percentage&gt;</code> generate a gaps between rows and columns. <code>&lt;length&gt;</code> generate a gaps between rows and columns.</td>
702+
<td class="example"><a href="example/gap.html"><i class="fas fa-external-link-alt"></i></a></td>
703+
</tr>
704+
<tr>
705+
<td>$row-gap</td>
706+
<td>null</td>
707+
<td>null | &lt;<a href="http://www.w3.org/TR/CSS21/syndata.html#percentage-units" target="_blank">percentage</a>&gt; | &lt;<a href="http://www.w3.org/TR/CSS21/syndata.html#length-units" target="_blank">length</a>&gt;</td>
708+
<td>define row gutter using <a href="https://developer.mozilla.org/en-US/docs/Web/CSS/row-gap">row-gap CSS property</a>. <code>null</code> is no gaps between rows and columns. <code>&lt;percentage&gt;</code> generate a gaps between rows and columns. <code>&lt;length&gt;</code> generate a gaps between rows and columns.</td>
709+
<td></td>
710+
</tr>
711+
<tr>
712+
<td>$column-gap</td>
713+
<td>null</td>
714+
<td>null | &lt;<a href="http://www.w3.org/TR/CSS21/syndata.html#percentage-units" target="_blank">percentage</a>&gt; | &lt;<a href="http://www.w3.org/TR/CSS21/syndata.html#length-units" target="_blank">length</a>&gt;</td>
715+
<td>define column gutter using <a href="https://developer.mozilla.org/en-US/docs/Web/CSS/column-gap">column-gap CSS property</a>. <code>null</code> is no gaps between rows and columns. <code>&lt;percentage&gt;</code> generate a gaps between rows and columns. <code>&lt;length&gt;</code> generate a gaps between rows and columns.</td>
716+
<td></td>
717+
</tr>
695718
</table>
696719

697-
<h3 class="reference"><span class="small">@include</span> <span class="big">grid-col</span>($col: null, $grid-columns: 12, $col-offset: null, $gutter: null, $align-self: null, $flex-grow: 0, $flex-shrink: 1, $flex-basis: auto, $order: null, $shorthand: true, $last-child: false, $width: null, $max-width: null, $min-width: null, $height: null, $max-height: null, $min-height: null);</h3>
720+
<h3 class="reference"><span class="small">@include</span> <span class="big">grid-col</span>($col: null, $grid-columns: 12, $col-offset: null, $gutter: null, $gap: null, $row-gap: null, $column-gap: null, $gutter: null, $align-self: null, $flex-grow: 0, $flex-shrink: 1, $flex-basis: auto, $order: null, $shorthand: true, $last-child: false, $condense: false, $width: null, $max-width: null, $min-width: null, $height: null, $max-height: null, $min-height: null);</h3>
698721

699722
<p>Generate the grid columns.</p>
700723

@@ -733,10 +756,31 @@ <h3 class="reference"><span class="small">@include</span> <span class="big">grid
733756
<td>$gutter</td>
734757
<td>null</td>
735758
<td>null | &lt;<a href="http://www.w3.org/TR/CSS21/syndata.html#percentage-units" target="_blank">percentage</a>&gt; | &lt;<a href="http://www.w3.org/TR/CSS21/syndata.html#length-units" target="_blank">length</a>&gt;</td>
736-
<td>define gutter. <code>null</code> is no margin between columns. <code>&lt;percentage&gt;</code> generate a margin of between columns. <code>&lt;length&gt;</code> generate a margin of between columns (<code>&lt;length&gt;</code> is experimental stage).</td>
759+
<td>define gutters using margin CSS property. <code>null</code> is no margin between columns. <code>&lt;percentage&gt;</code> generate a margin of between columns. <code>&lt;length&gt;</code> generate a margin of between columns (<code>&lt;length&gt;</code> is experimental stage).</td>
737760
<td class="example"><a href="example/example.html#flexbox-grid-mixins-example"><i class="fas fa-external-link-alt"></i></a> <a href="example/unit-set.html"><i class="fas fa-external-link-alt"></i></a></td>
738761
</tr>
739762
<tr>
763+
<td>$gap</td>
764+
<td>null</td>
765+
<td>null | &lt;<a href="http://www.w3.org/TR/CSS21/syndata.html#percentage-units" target="_blank">percentage</a>&gt; | &lt;<a href="http://www.w3.org/TR/CSS21/syndata.html#length-units" target="_blank">length</a>&gt;</td>
766+
<td>define gutters using <a href="https://developer.mozilla.org/en-US/docs/Web/CSS/gap">gap CSS property</a>. <code>null</code> is no gaps between rows and columns. <code>&lt;percentage&gt;</code> generate a gaps between rows and columns. <code>&lt;length&gt;</code> generate a gaps between rows and columns.</td>
767+
<td class="example"><a href="example/gap.html"><i class="fas fa-external-link-alt"></i></a></td>
768+
</tr>
769+
<tr>
770+
<td>$row-gap</td>
771+
<td>null</td>
772+
<td>null | &lt;<a href="http://www.w3.org/TR/CSS21/syndata.html#percentage-units" target="_blank">percentage</a>&gt; | &lt;<a href="http://www.w3.org/TR/CSS21/syndata.html#length-units" target="_blank">length</a>&gt;</td>
773+
<td>define row gutter using <a href="https://developer.mozilla.org/en-US/docs/Web/CSS/row-gap">row-gap CSS property</a>. <code>null</code> is no gaps between rows and columns. <code>&lt;percentage&gt;</code> generate a gaps between rows and columns. <code>&lt;length&gt;</code> generate a gaps between rows and columns.</td>
774+
<td></td>
775+
</tr>
776+
<tr>
777+
<td>$column-gap</td>
778+
<td>null</td>
779+
<td>null | &lt;<a href="http://www.w3.org/TR/CSS21/syndata.html#percentage-units" target="_blank">percentage</a>&gt; | &lt;<a href="http://www.w3.org/TR/CSS21/syndata.html#length-units" target="_blank">length</a>&gt;</td>
780+
<td>define column gutter using <a href="https://developer.mozilla.org/en-US/docs/Web/CSS/column-gap">column-gap CSS property</a>. <code>null</code> is no gaps between rows and columns. <code>&lt;percentage&gt;</code> generate a gaps between rows and columns. <code>&lt;length&gt;</code> generate a gaps between rows and columns.</td>
781+
<td></td>
782+
</tr>
783+
<tr>
740784
<td>$align-self</td>
741785
<td>null</td>
742786
<td>null | auto | flex-start | flex-end | center | baseline | stretch</td>
@@ -779,6 +823,13 @@ <h3 class="reference"><span class="small">@include</span> <span class="big">grid
779823
<td></td>
780824
</tr>
781825
<tr>
826+
<td>$condense</td>
827+
<td>null</td>
828+
<td>false | true</td>
829+
<td>remove the Stack (the top or bottom margin), if <code>true</code></td>
830+
<td class="example"><a href="example/example.html#condense"><i class="fas fa-external-link-alt"></i></a> <a href="example/stack.html#with-condense"><i class="fas fa-external-link-alt"></i></a></td>
831+
</tr>
832+
<tr>
782833
<td>$last-child</td>
783834
<td>false</td>
784835
<td>&lt;boolean&gt;</td>

0 commit comments

Comments
 (0)