- From: fantasai <fantasai.lists@inkedblade.net>
- Date: Mon, 06 Jun 2011 18:08:00 +0900
- To: www-style@w3.org
On 06/06/2011 03:03 PM, Andrew Fedoniouk wrote:
>
> ? What exactly will be rendered in this case:
>
> .flex-container {
> flex-orientation: rows;
> flex-wrap: no-wrap; /* wrapping what actually? */
> direction: rtl;
> flex-direction: backward;
> }
> .flex-container > * { width:50%; }
>
> with this markup:
>
> <div .flex-container>
> <p>1</p>
> <p>2</p>
> <p>3</p>
> <p>4</p>
> </div>
You will get four boxes in a row from left to right.
1 2 3 4
The width of those boxes would be determined by the
flexbox spec, I'm not sure what it says for four
boxes of 50% each in a row.
~fantasai
Received on Monday, 6 June 2011 09:08:32 UTC