Transforms an element to a flex box where the child elements are horizontally aligned.
flexvh('tl') \\ Returns... Copy
flexvh('tl') \\ Returns...
{ align-items: flex-start; box-sizing: border-box; display: flex; flex-direction: row; flex-wrap: nowrap; justify-content: flex-start;} Copy
{ align-items: flex-start; box-sizing: border-box; display: flex; flex-direction: row; 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 horizontally aligned.
Example