A Quick Cheat sheet on CSS Flexbox
Basics
Flexbox is a modern one-dimensional layout method for arranging items in rows or columns.
Syntax:
.parent{
display: flex;
}
In the flex layout model, the children of a flex container can be laid out in any direction, and can flex their size...
avicreation.hashnode.dev8 min read