- From: Nicolas Hoffmann via GitHub <sysbot+gh@w3.org>
- Date: Wed, 26 May 2021 13:51:15 +0000
- To: public-css-archive@w3.org
Yes, there are some cases where we would really need this, I'm facing one right now for a custom toggle:
LTR:

I'm doing: 
```
transform: translateX(<value>);
```
for active state.
But it will give this in RTL:

I have to do:
```
transform: translateX(-<value>);
```
To get the proper display:

Something like: `translate-inline-start` would replace something like: 
```
[dir="rtl] .selector {
transform: translateX(-<value>);
}
```
And same for translateY, we would go for `translate-block-start`. 
For translateZ, I guess i18n does not encounter negative 3D written stuff... so it's okay :D 
-- 
GitHub Notification of comment by nico3333fr
Please view or discuss this issue at https://github.com/w3c/csswg-drafts/issues/1788#issuecomment-848787375 using your GitHub account
-- 
Sent via github-notify-ml as configured in https://github.com/w3c/github-notify-ml-config
Received on Wednesday, 26 May 2021 13:51:17 UTC