Re: Styling vertical text, initial article and interactive tests

[[
For example, for dates and times, you could just apply the style to the 
date element.
]]

There is no <date> element in HTML. You mean the <time> element.

[[
date { text-combine-upright: digit 2; text-combine-upright: digit 2; }
]]

Should be ‘time’ here as well. And not the same declaration twice.


[[
     figure:lang(ja) {
         writing-mode: vertical-rl;
         -webkit-writing-mode: vertical-rl;
         -ms-writing-mode: tb-rl;
         }
]]

The unprefixed property should always be the last, following the 
prefixed properties in order to overwrite the experimental properties in 
case both are supported. This applies to various code samples in the 
article.

[[
  For Mongolian, use:

     figure {
]]

Rather `figure:lang(mn-Mong)` (and other language tags for Mongolian)?

Cheers,
Gunnar

Received on Tuesday, 26 May 2015 22:12:06 UTC