position-try-fallbacks:
/* First try above and span-right. */
block-start span-inline-end,
/* Then below but span-left. */
block-end span-inline-start,
/* Then above and span-left. */
block-start span-inline-start;
These values all use the writing mode of the containing block, but that's often going to be the page itself. If you have an RTL control (whether just the RTL control or the component it's in is RTL), you probably want to align it based on its own writing mode.
So these should probably all have self- prepended, I think.
These values all use the writing mode of the containing block, but that's often going to be the page itself. If you have an RTL control (whether just the RTL control or the component it's in is RTL), you probably want to align it based on its own writing mode.
So these should probably all have
self-prepended, I think.