[csswg-drafts] Please remove from drafts: scale, translate, rotate CSS style etc.

Nadya678 has just created a new issue for https://github.com/w3c/csswg-drafts:

== Please remove from drafts: scale, translate, rotate CSS style etc.  ==
Example:
```
transform:scale(2) translate(50px,50px);
transform:translate(50px,50px) scale(2);
```

THERE ARE TWO DIFFERENT TRANSFORMS. It cannot be separated to scale and translate. 
Living demo: https://jsfiddle.net/p7sb1o6h/
If there will be the same transform, the red and blue rectangle shall be in the same visual position. 

The scale, translate, rotate etc. styles (not transforms) shall be removed from all drafts. 
  
The 
```
{
   transform:scale(-1) translate(50px,50px);
}
```

cannot be translated to: 
```
{
   scale:-1;
   transform:50px 50px; 
} 
```

transforms are made in order in which they was defined. 
What is order of transformations in this case?
```
div
{
   scale:-1;
}
html div
{
   transform:50px 50px;
}
```

Please view or discuss this issue at https://github.com/w3c/csswg-drafts/issues/2126 using your GitHub account

Received on Thursday, 21 December 2017 20:10:58 UTC