Skip to content

Flex Direction

Controls the direction of flex elements.

Class Properties

fd-c

flex-direction: column;

fd-cr

flex-direction: column-reverse;

fd-r

flex-direction: row;

fd-rr

flex-direction: row-reverse;

Using breakpoints

Using responsive breakpoints like sm:fd-*, md:fd-*, lg:fd-*, and xxl:fd-* allows targeting specific utilities in different viewports.

<div class="fd-c md:fd-r ..."></div>

Using variants

Using :hover variants such as h:fd-* allows you to override elements and change their values when hovering over them.

<div class="fd-c h:fd-r ..."></div>