Transforms an element to a flex box where the child elements are vertically aligned.
flexrv('tl') // Returns... Copy
flexrv('tl') // Returns...
{ align-items: flex-start; box-sizing: border-box; display: flex; flex-direction: column-reverse; flex-wrap: nowrap; justify-content: flex-end;} Copy
{ align-items: flex-start; box-sizing: border-box; display: flex; flex-direction: column-reverse; flex-wrap: nowrap; justify-content: flex-end;}
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