Tailwind CSS Flex Direction

Tailwind CSS Flex Direction

Tailwind CSS Flex Direction : The CSS flexbox is a vital feature to develop the frontend, there are four directions available in CSS so in tailwind CSS all the properties are covered as in class form. It is the alternative of CSS flex-direction Property for fast development of front-end.

Tailwind CSS Flex Direction

Utilities for controlling the direction of flex items.

ClassProperties
flex-rowflex-direction: row;
flex-row-reverseflex-direction: row-reverse;
flex-colflex-direction: column;
flex-col-reverseflex-direction: column-reverse;

flex-row: It arranges the row the same as the text direction. The default value of flex-direction is a row. It is used to specify that the item has a normal text direction. It makes the item follow the normal text direction in lines.

Use flex-row to position flex items horizontally in the same direction as text:

Syntax:

<element class="flex flex-row"> Contents... </element>
Tailwind CSS Flex Direction

flex-row-reverse: This class is used to follow the opposite text direction. It makes flex items in reverse order exactly the opposite of text direction as we can see in the Output.

Syntax:

<element class="flex flex-row-reverse"> Contents... </element>

Use flex-row-reverse to position flex items horizontally in the opposite direction:

Tailwind CSS Flex Direction

flex-col: It arranges the row as a column same as text direction but top to bottom. It is used to specify that the item has a normal top to bottom direction. It makes the item follow the normal top to bottom direction as we can see in the output.

Use flex-col to position flex items vertically:

Syntax:

<element class="flex flex-col"> Contents... </element>
Tailwind CSS Flex Direction

flex-col-reverse: It arranges the row as a column same as row-reverse bottom to top. It is used to specify that the item has a normal bottom to top direction. It makes the item follow the normal bottom to top direction as we can see in the output.

Syntax:

<element class="flex flex-col-reverse"> Contents... </element>

Use flex-col-reverse to position flex items vertically in the opposite direction:

Tailwind CSS Flex Direction

Leave a Comment

Your email address will not be published. Required fields are marked *