Enable flex box in css:
.box{
display: flex;
}
flex three simple properties:
flex-direction: row | row-reverse | column | coliumn-reverse;
flex-wrap: nowrap | wrap | wrap-reverse;
justify-content: flex-start | flex-end | center | space-between | space-around;/*alignment on center of children elements*/
algin-items: flex-start | flex-end | center | baseline | stretch;/*algin children on border-line*/
algin-content: flex-start | flex-end | center | space-between | space-around | stretch; /*whole content alginment*/
flex one complex property:
flex-flow: <flex-direction> <flex-wrap>