diff --git a/docs/utilities/flexbox.md b/docs/utilities/flexbox.md index 324bfa2f05..a05c117e7f 100644 --- a/docs/utilities/flexbox.md +++ b/docs/utilities/flexbox.md @@ -13,12 +13,7 @@ Quickly manage the layout, alignment, and sizing of grid columns, navigation, co ## Enable flex behaviors -Apply `display` utilities to create a flexbox container and transform **direct children elements** into flex items. Flex containers and items are able to be modified further with additional flex properties. Choose from the following options. - -| Class | property: value; | Description | -| --- | --- | --- | -| `.d-flex` | `display: flex;` | Creates a block-level element using the flexbox model. | -| `.d-inline-flex` | `display: inline-flex;` | Creates an inline-level element using the flexbox model. | +Apply `display` utilities to create a flexbox container and transform **direct children elements** into flex items. Flex containers and items are able to be modified further with additional flex properties. {% example html %}
I'm a flexbox container!
@@ -30,7 +25,11 @@ Apply `display` utilities to create a flexbox container and transform **direct c Responsive variations also exist for `.d-flex` and `.d-inline-flex`. - +{% for bp in site.data.breakpoints %} +- `.d{{ bp.abbr }}-flex` +- `.d{{ bp.abbr }}-inline-flex`{% endfor %} + +
@@ -87,7 +86,11 @@ Use `.flex-column` to set a vertical direction. Responsive variations also exist for `.flex-row` and `.flex-column`. - +{% for bp in site.data.breakpoints %} +- `.flex{{ bp.abbr }}-row` +- `.flex{{ bp.abbr }}-column`{% endfor %} + +
@@ -164,7 +167,11 @@ Change how flex items wrap in a flex container. Choose from no wrapping at all ( Responsive variations also exist for `.flex-nowrap` and `.flex-wrap`. - +{% for bp in site.data.breakpoints %} +- `.flex{{ bp.abbr }}-nowrap` +- `.flex{{ bp.abbr }}-wrap`{% endfor %} + +