Transforms an element to a flex box where the child elements are vertically aligned.
flexv('tl') \\ Returns... Copy
flexv('tl') \\ Returns...
{ align-items: flex-start; box-sizing: border-box; display: flex; flex-direction: column-reverse; flex-wrap: nowrap; justify-content: flex-start;} Copy
{ align-items: flex-start; box-sizing: border-box; display: flex; flex-direction: column-reverse; flex-wrap: nowrap; justify-content: flex-start;}
Alignment style of child elements.
Specifies if the element is inline (inline-flex instead of flex).
inline-flex
flex
CSS string.
Transforms an element to a flex box where the child elements are vertically aligned.
Example