Design Template by Anonymous
Flex Grow, Shrink, & Basis
flex-grow
The flex grow element takes a unitless value to increase the size of a selected object within a container faster than the other objects.

flex-grow: 0;

flex-grow: 1;
flex-shrink
The flex shrink element takes a unitless value which serves as a rate of how quickly the selected element would shrink in comparison to the other elements within the container. Keep in mind you cannot use flex-wrap and flex-shrink within the same object.

flex-shrink: 0;

flex-shrink: 10;
flex-basis
Flex basis can only be used in conjunction with either flex grow or
shrink. Basis allows you to set a default size using any size value
for either the Flex grow or flex shrink element. An example of this
would look like. flex-basis: 150px;