[csswg-drafts] [css-text-3] possibly incorrect description of "text-align-last: auto"

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

== [css-text-3] possibly incorrect description of "text-align-last: auto" ==
>From the editors draft at https://drafts.csswg.org/css-text-3/#propdef-text-align-last

> If auto is specified, content on the affected line is aligned per text-align unless text-align is set to justify, in which case it is start-aligned. All other values have the same meanings as in text-align.

In this text, "text-align" should be replaced with "text-align-all". "text-align" is a shortcut property so its value should not be referenced, as it is simply setting other properties. As it is defined now, you wind up in this situation:
```
text-align: left;
text-align-all: right;
text-align-last: auto;
```
the last line will be left-aligned, which is not right. Or even correct. Hopefully I have justified my position?

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

Received on Tuesday, 13 February 2018 18:26:17 UTC