Support Start
and End
alignment keywords
#1429
Reference in New Issue
Block a user
No description provided.
Delete Branch "%!s()"
Deleting a branch is permanent. Although the deleted branch may continue to exist for a short time before it actually gets removed, it CANNOT be undone in most cases. Continue?
Report
CSS defines both
start
/end
andflex-start
/flex-end
alignment keywords. The difference is that theflex-*
versions are affected by bothdirection
andflex-direction
whereas the other versions ignoreflex-direction
.Yoga only has
FlexStart
andFlexEnd
variants in it'sAlign
andJustify
enums, and this issue is a request forStart
andEnd
to be added (and also to check that Yoga'sFlexStart
andFlexEnd
do actually correspond toflex-start
andflex-end
semantics).