Today’s notes is for the Section 7, Lecture 67-71 of this udemy course.
Flexbox Introduction
Main Properties
Container properties
flex-direction
defines the axis on which the items should be aligned.flex-wrap
defines how the container should align the items when the size of the items overflow the container.justify-content
defines how the items should be aligned on the main axis.align-items
defines how the items should be aligned on the cross axis.align-content
defines how the lines should be aligned on the cross axis, when there are multiple lines on the cross axis.
Item properties
align-self
defines where to align the item itself based on the container.order
defines the order of the item among all the sibilines.flex-grow
defines the ratio of the space the item can take when there is extra space in the container.flex-shrink
defines the ratio of the space the item can shrink when there’s not enough space in the container.flex-basis
defines the initial size of the item before the available space being distributed.