Flex-grow and flex-basis
In this lesson, we will use flex-grow and flex-basis to divide the available space proportionally among the flex-items.
We'll cover the following...
We'll cover the following...
One reason why Flexbox is flexible is that Flexbox items can grow and shrink in size.
By default, each Flex item is displayed based on their min-width
property.
Once one Flex item receives a positive flex-grow
value, this item takes all the available space in the container.
If all the Flex-items receive the same positive ...