Re: [csswg-drafts] [css-transforms] Let 'transform-origin' and 'transform' take comma-separated lists (#589)

Excuse the long delay for my reply and thank you very much for your explanations! This was not clear to me at all before.

Because I'm surely not the only one, I've now added a simple example explaining that to the [MDN page for `transform-origin`](https://wiki.developer.mozilla.org/en-US/docs/Web/CSS/transform-origin).

Regarding my example, I still believe

```css
transform-origin: center, bottom right;
transform: scale(2), rotate(45deg);
```

is way more readable than

```css
transform-origin: 0 0;
transform:
 translate(50% 50%) scale(2) translate(-50% -50%)
 translate(100% 100%) rotate(45deg) translate(-100% -100%);
```

Though I can understand that the use case is probably not strong enough to adjust existing implementations to the more complex list syntax.

Sebastian

-- 
GitHub Notification of comment by SebastianZ
Please view or discuss this issue at https://github.com/w3c/csswg-drafts/issues/589#issuecomment-551298829 using your GitHub account

Received on Thursday, 7 November 2019 22:38:34 UTC