Css Flex Css Tricks Code Example


Example 1: flex css end


.item {
align-self:flex-start | flex-end | center | baseline | stretch;
}

Example 2: css flex


/* Flex */
.anyclass {
display:flex;
}
/* row is the Default, if you want to change choose */
.anyclass {
display:flex;
flex-direction: row | row-reverse | column | column-reverse;
}

.anyclass {
/* Alignment along the main axis */
justify-content: flex-start | flex-end | center | space-between | space-around | space-evenly | start | end | left | right ... + safe | unsafe;
}

Example 3: flex parameters


flex: none | [ <'flex-grow'> <'flex-shrink'>? || <'flex-basis'> ]

Example 4: flex box css tricks


.container {
flex-direction: row | row-reverse | column | column-reverse;
}

Comments

Popular posts from this blog

Converting A String To Int In Groovy

"Cannot Create Cache Directory /home//.composer/cache/repo/https---packagist.org/, Or Directory Is Not Writable. Proceeding Without Cache"

Android SDK Location Should Not Contain Whitespace, As This Cause Problems With NDK Tools