- From: Oriol Brufau via GitHub <sysbot+gh@w3.org>
- Date: Sat, 09 Jun 2018 17:12:24 +0000
- To: public-css-archive@w3.org
Loirooriol has just created a new issue for https://github.com/w3c/csswg-drafts:
== [css-logical] Logical properties should be animatable like the physical ones ==
I don't see why this shouldn't be possible:
```css
#element {
animation: size 1s infinite alternate;
}
@keyframes size {
from { inline-size: 100px }
to { inline-size: 200px }
}
```
I expect it to animate just like if I used `width`. But the [spec](https://drafts.csswg.org/css-logical/#dimension-properties) says
> Animation type: discrete
On Chrome it's effectively discrete, on Firefox it doesn't animate at all. https://jsfiddle.net/45e6okrm/
Please view or discuss this issue at https://github.com/w3c/csswg-drafts/issues/2751 using your GitHub account
Received on Saturday, 9 June 2018 17:12:29 UTC