Flexbox

Below shows a basic introduction to 'Flexbox'. See more information on the "Css-Tricks" website A Complete Guide to Flexbox


1
2
3
4

flex-direction

flex-wrap

justify-content →

align-items ↓

//Css Output

.element {
display: flex;
flex-direction: row;
flex-wrap: wrap;
justify-content: space-between;
align-items: center;
}

Home | About | Test | Scss | Extras | Layout