--- title: Flexbox helpers layout: docs theme: helpers doc-tab: helpers doc-subtab: helpers-flexbox breadcrumb: - home - documentation - helpers - helpers-flexbox flex-direction-values: - row - row-reverse - column - column-reverse flex-wrap-values: - nowrap - wrap - wrap-reverse justify-content-values: - flex-start - flex-end - center - space-between - space-around - space-evenly - start - end - left - right align-content-values: - flex-start - flex-end - center - space-between - space-around - space-evenly - stretch - start - end - baseline align-items-values: - stretch - flex-start - flex-end - center - baseline - start - end - self-start - self-end align-self-values: - auto - flex-start - flex-end - center - baseline - stretch ---

Combined with is-flex, all of the Flexbox CSS properties are available as Bulma helpers:

{% include docs/elements/anchor.html name="Flex direction" %} {% include docs/elements/flexbox-helper-table.html property="flex-direction" values=page.flex-direction-values %} {% include docs/elements/anchor.html name="Flex wrap" %} {% include docs/elements/flexbox-helper-table.html property="flex-wrap" values=page.flex-wrap-values %} {% include docs/elements/anchor.html name="Justify content" %} {% include docs/elements/flexbox-helper-table.html property="justify-content" values=page.justify-content-values %} {% include docs/elements/anchor.html name="Align content" %} {% include docs/elements/flexbox-helper-table.html property="align-content" values=page.align-content-values %} {% include docs/elements/anchor.html name="Align items" %} {% include docs/elements/flexbox-helper-table.html property="align-items" values=page.align-items-values %} {% include docs/elements/anchor.html name="Align self" %} {% include docs/elements/flexbox-helper-table.html property="align-self" values=page.align-self-values %} {% include docs/elements/anchor.html name="Flex grow and flex shrink" %} {% for i in (0..5) %} {% endfor %} {% for i in (0..5) %} {% endfor %}
Class Property: Value
Grow
is-flex-grow-{{ i }} flex-grow: {{ i }}
Shrink
is-flex-shrink-{{ i }} flex-shrink: {{ i }}