Align Self
Auto
Use t.selfAuto
to align an item based on the value of the flex container’s alignItems
property:
1
2
3
Start
Use t.selfStart
to align an item to the start of the flex container’s cross axis, despite the container’s alignItems
value:
1
2
3
Center
Use t.selfCenter
to align an item along the center of the flex container’s cross axis, despite the container’s alignItems
value:
1
2
3
End
Use t.selfEnd
to align an item to the end of the flex container’s cross axis, despite the container’s alignItems
value:
1
2
3
Stretch
Use t.selfStretch
to stretch an item to fill the flex container’s cross axis, despite the container’s alignItems
value:
1
2
3
Baseline
Use t.selfBaseline
to align an item along the flex container’s cross axis, despite the container’s alignItems
value:
1
2
3