Flexbox
Introduction
The flexible box layout module makes it easier to design a flexible, responsive layout structure without using float or positioning.
Flexbox Properties
Property | Values | Description |
---|---|---|
Flex Basis | number, auto | Specifies the initial length of a flexible item. |
Align Self | auto, stretch, center, flex-start, flex-end, baseline | Specifies the alignment for the selected item inside the flexible container. |
Flex Grow | number | Specifies how much the item will grow relative to the rest of the flexible items inside the same container. |
Flex Shrink | number | Specifies how the item will shrink relative to the rest of the flexible items inside the same container. |
Was this article helpful?
YesNo