FLEX TRICKS code example
Example 1: css flex
.anyclass {
display:flex;
}
.anyclass {
display:flex;
flex-direction: row | row-reverse | column | column-reverse;
}
.anyclass {
justify-content: flex-start | flex-end | center | space-between | space-around | space-evenly | start | end | left | right ... + safe | unsafe;
}
Example 2: flex: syntex
flex: none
flex: <'flex-grow'>
flex: <'flex-basis'>
flex: <'flex-grow'> <'flex-basis'>
flex: <'flex-grow'> <'flex-shrink'>
flex: <'flex-grow'> <'flex-shrink'> <'flex-basis'>
flex: inherit
Example 3: flex parameters
flex: none | [ <'flex-grow'> <'flex-shrink'>? || <'flex-basis'> ]
Example 4: flexbox
Please read flexbox & grid in CSS TRIX,
make hands-on project watching (WESBOS videos - it's really useful)
also try [FLEXBOX - froggy] and [GRID - garden] games
Example 5: flex box css tricks
.container {
flex-direction: row | row-reverse | column | column-reverse;
}