The .css file
The .css file Developers avoid mixing code by storing HTML and CSS code in separate files (HTML fil…
The .css file Developers avoid mixing code by storing HTML and CSS code in separate files (HTML fil…
align-content The align-content property modifies the behavior of the flex-wrap property. It is s…
align-items align-items define the alignment along the cross-axis. Previous Post Next Post
justify-content justify-content defines the alignment along the main axis. Previous Post Next Post
flex-grow We can grow the flex items as a unitless value according to proportion. Syntax .item { …
flex-wrap By default, flex items will all try to fit onto one line. We can change it with flex-wr…
flex-direction .container { flex-direction: row | row-reverse | column | column-reverse; } Previo…
flex Legal Values flex is the shorthand of flex-grow flex-shrink flex-basis Default: 0 1 auto <…
Flex-basis The flex-basis property specifies the width of a flex item. Basically, the flex or minim…
flex-shrink We can set the size of every child element under the parent element. The flex-shrink …