Below shows a basic introduction to 'Flexbox'. See more information on the "Css-Tricks" website A Complete Guide to Flexbox
1
2
3
4
//Css Output
.element {display: flex;
flex-direction: row;
flex-wrap: wrap;
justify-content: space-between;
align-items: center;
}