[svgwg] SVG and CSS transform

NtuFlorimond has just created a new issue for https://github.com/w3c/svgwg:

== SVG and CSS transform ==
Hello,

I have noticed that only ONE transform is taken into account when trying to "chain" them with class.
SVG example :
`    <text class="line_2 column_4">no existing document </text>
`
With CSS like :
```
.line_2 {
transform: translate(0,690px);
-ms-transform: translate(0,690px); /* IE 9 */
-webkit-transform: translate(0,690px); /* Safari and Chrome */
-o-transform: translate(0,690px); /* Opera */
-moz-transform: translate(0,690px); /* Firefox */
}
.column_4 {
transform: translate(120px,0);
-ms-transform: translate(120px,0); /* IE 9 */
-webkit-transform: translate(120px,0); /* Safari and Chrome */
-o-transform: translate(120px,0); /* Opera */
-moz-transform: translate(120px,0); /* Firefox */
}
```
Any way to improve this ?

Please view or discuss this issue at https://github.com/w3c/svgwg/issues/318 using your GitHub account

Received on Tuesday, 23 May 2017 20:32:07 UTC