flex 3 div layout code example
Example 1: make the first item at the very top of the screen
.fixedElement {
position:fixed;
top:0;
width:100%;
z-index:100;
}
Example 2: flex box css
.container {
flex-direction: row | row-reverse | column | column-reverse;
}