CSS flexboxes are modern css layout that help us to order elements vertical and horizontal.
Why flexbox?
It is easier to make responsive our website with flexbox.
Flex structure is simple.
Flexbox supported by all browsers today.

How to use Flexbox:
There are 2 main item in flexbox. First Container , second Items.


Display
Using display:flex we make our container flexible.
.container{display: flex /* or inline-flex */}
Flex Direction

Align-items
It help us alignment of items in y-axis.
For more dev posts : Link



Top comments (0)