csswg/css3-flexbox Overview.html,1.122,1.123 Overview.src.html,1.121,1.122

Update of /sources/public/csswg/css3-flexbox
In directory hutz:/tmp/cvs-serv11471

Modified Files:
	Overview.html Overview.src.html 
Log Message:
Added note to flex-order about it not affecting drawing order.

Index: Overview.html
===================================================================
RCS file: /sources/public/csswg/css3-flexbox/Overview.html,v
retrieving revision 1.122
retrieving revision 1.123
diff -u -d -r1.122 -r1.123
--- Overview.html	30 Jan 2012 17:53:56 -0000	1.122
+++ Overview.html	30 Jan 2012 18:01:00 -0000	1.123
@@ -964,7 +964,11 @@
    href="#flexbox-item"><i>flexbox items</i></a> appear. A flexbox will lay
    out its content starting from the lowest numbered ordinal group and going
    up. Items with the same ordinal group are laid out in the order they
-   appear in the source document.
+   appear in the source document. &lsquo;<a href="#flex-order0"><code
+   class=property>flex-order</code></a>&rsquo; has no effect on
+   stacking/layering; elements must still be drawn over/under each other
+   based on document order, &lsquo;<code
+   class=property>z-index</code>&rsquo;, and other relevant means.
 
   <div class=example>
    <p>The following figure shows a simple tabbed interface, where the tab for

Index: Overview.src.html
===================================================================
RCS file: /sources/public/csswg/css3-flexbox/Overview.src.html,v
retrieving revision 1.121
retrieving revision 1.122
diff -u -d -r1.121 -r1.122
--- Overview.src.html	30 Jan 2012 17:53:56 -0000	1.121
+++ Overview.src.html	30 Jan 2012 18:01:00 -0000	1.122
@@ -435,7 +435,7 @@
 
 	<p>The 'flex-order' property assigns <i>flexbox items</i> to ordinal groups.</p>
 
-	<p>Ordinal groups control the order in which <i>flexbox items</i> appear.  A flexbox will lay out its content starting from the lowest numbered ordinal group and going up.  Items with the same ordinal group are laid out in the order they appear in the source document.
+	<p>Ordinal groups control the order in which <i>flexbox items</i> appear.  A flexbox will lay out its content starting from the lowest numbered ordinal group and going up.  Items with the same ordinal group are laid out in the order they appear in the source document.  'flex-order' has no effect on stacking/layering; elements must still be drawn over/under each other based on document order, 'z-index', and other relevant means.</p>
 
 	<div class='example'>
 		<p>The following figure shows a simple tabbed interface, where the tab for the active pane is always in front:</p>

Received on Monday, 30 January 2012 18:01:07 UTC