css_flex - CSS Flexbox: A web developer’s delight to positioning elements
CSS Flexbox: A web developer’s delight to positioning elements
Flexbox
Flex Direction
Flex Wrap
Flex Flow
Justify Content
Align Items
Align Content
Order
Flex Grow
Flex Shrink
Flex Basis
Flex
Align Self
Lastly, we have the align-self property which is same as align-items except for the fact the former is applied to the flex-child and the latter is applied to the flex-container/parent. It accepts all the same values as align-items which include the following:
align-self: auto || stretch || flex-start || flex-end || center || baseline;
No comments