diff options
| author | CFX <[email protected]> | 2021-04-06 14:45:28 -0400 |
|---|---|---|
| committer | GitHub <[email protected]> | 2021-04-06 21:45:28 +0300 |
| commit | 0c56749f136c0d01aaebe17b6bf1584239f80869 (patch) | |
| tree | 87fd193f398e7fdce10009ee1183f83b60472069 /site/content/docs | |
| parent | 317c2cd08e91d118132c36648ba0bbed7812357a (diff) | |
| download | bootstrap-0c56749f136c0d01aaebe17b6bf1584239f80869.tar.xz bootstrap-0c56749f136c0d01aaebe17b6bf1584239f80869.zip | |
Add equal column mixin (#32155)
Diffstat (limited to 'site/content/docs')
| -rw-r--r-- | site/content/docs/5.0/layout/grid.md | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/site/content/docs/5.0/layout/grid.md b/site/content/docs/5.0/layout/grid.md index 76b65c1bc..ddc1c594d 100644 --- a/site/content/docs/5.0/layout/grid.md +++ b/site/content/docs/5.0/layout/grid.md @@ -434,6 +434,9 @@ Mixins are used in conjunction with the grid variables to generate semantic CSS // Make the element grid-ready (applying everything but the width) @include make-col-ready(); + +// Without optional size values, the mixin will create equal columns (similar to using .col) +@include make-col(); @include make-col($size, $columns: $grid-columns); // Get fancy by offsetting, or changing the sort order |
