RE: [css3-text-layout] New editor's draft - margin-before/after/start/end etc.

> From: www-style-request@w3.org [mailto:www-style-request@w3.org] On
> Behalf Of Håkon Wium Lie
> Sent: Tuesday, May 25, 2010 9:56 AM


> I would like to explore how the issues at hand can be addressed
> through other solutions. For example, by using the :lang selector:
> 
>   p {
>     margin: 10px 20px;
>   }
> 
>   p:lang(ja) {
>     writing-mode: tb-rl;
>     margin: 20px 10px;
>   }
> 

OK, what does margin-left mean here. Physical left or logical left for tb-rl ?

   p:lang(ja) {
     writing-mode: tb-rl;
     margin-left: 20px;
   }

Received on Wednesday, 26 May 2010 05:33:23 UTC