Describe the feature request
For properties like transform
The majority of our leftover usages of /* @ltr-begin */ strings come from transform styles that should be flipped in RTL. For example:
transform: rotate(-45deg);
/* @rtl begin */
transform: rotate(45deg);
/* @rtl end */
We could either a set of basic supported CSS variables that autoflip based on [dir="rtl"]or create a config to allow users to define such a set to mimic logical behaviour for properties without such an equivalent
Similar to the proposed float polyfill here: #1217