Align Items
The align-items
property in CSS is used to control how flex or grid items are aligned along the cross axis (which is vertical in a row layout and horizontal in a column layout).
Align Items in Workmaster
In Workmaster, the Align Items
property functions similarly—it controls how child elements (widgets) are aligned within a parent container along the cross axis.
To use this feature in Workmaster, you must first set the Display
property to either Flex
or Grid
.
Possible Values
Visual Representation
Value
Description

Baseline
aligns items along their text baseline

Center
centers items on the cross axis

End
aligns items to the end

Start
aligns items to the start of the cross axis
Examples
1. Baseline


2. Center


3. End


4. Start


Last updated