- From: Tab Atkins Jr.. via cvs-syncmail <cvsmail@w3.org>
- Date: Thu, 08 Dec 2011 00:45:26 +0000
- To: public-css-commits@w3.org
Update of /sources/public/csswg/css3-flexbox
In directory hutz:/tmp/cvs-serv9338
Modified Files:
Overview.html Overview.src.html
Log Message:
Update a 'flex-flow' reference to 'flex-wrap'.
Index: Overview.html
===================================================================
RCS file: /sources/public/csswg/css3-flexbox/Overview.html,v
retrieving revision 1.76
retrieving revision 1.77
diff -u -d -r1.76 -r1.77
--- Overview.html 8 Dec 2011 00:43:39 -0000 1.76
+++ Overview.html 8 Dec 2011 00:45:23 -0000 1.77
@@ -1255,7 +1255,7 @@
<p>A flexbox can be either <a href="#single-line"><i>single-line</i></a> or
<a href="#multi-line0"><i>multi-line</i></a>, depending on the ‘<a
- href="#flex-flow0"><code class=property>flex-flow</code></a>’
+ href="#flex-wrap"><code class=property>flex-wrap</code></a>’
property. A <dfn id=single-line>single-line</dfn> flexbox lays out all of
its children in a single line, even if that would cause the flexbox to
overflow its bounds. A <dfn id=multi-line0>multi-line</dfn> flexbox breaks
Index: Overview.src.html
===================================================================
RCS file: /sources/public/csswg/css3-flexbox/Overview.src.html,v
retrieving revision 1.76
retrieving revision 1.77
diff -u -d -r1.76 -r1.77
--- Overview.src.html 8 Dec 2011 00:43:39 -0000 1.76
+++ Overview.src.html 8 Dec 2011 00:45:24 -0000 1.77
@@ -583,7 +583,7 @@
<h2 id='multi-line'>
Multi-line Flexbox</h2>
- <p>A flexbox can be either <i>single-line</i> or <i>multi-line</i>, depending on the 'flex-flow' property. A <dfn>single-line</dfn> flexbox lays out all of its children in a single line, even if that would cause the flexbox to overflow its bounds. A <dfn>multi-line</dfn> flexbox breaks its <i>flexbox items</i> across multiple lines to avoid overflowing, similar to how text is broken onto a new line when it gets too wide to fit on the existing line. Every line contains at least one <i>flexbox item</i>, unless the flexbox itself is completely empty.</p>
+ <p>A flexbox can be either <i>single-line</i> or <i>multi-line</i>, depending on the 'flex-wrap' property. A <dfn>single-line</dfn> flexbox lays out all of its children in a single line, even if that would cause the flexbox to overflow its bounds. A <dfn>multi-line</dfn> flexbox breaks its <i>flexbox items</i> across multiple lines to avoid overflowing, similar to how text is broken onto a new line when it gets too wide to fit on the existing line. Every line contains at least one <i>flexbox item</i>, unless the flexbox itself is completely empty.</p>
<p>When additional lines are created, they are stacked in the flexbox in the <i>cross axis</i>. Each line is completely independent; flexible lengths and the 'flex-pack' and 'flex-align' properties only pay attention to the items on a single line at a time. The <i>main size</i> of a line is the same as the <i>main size</i> of the flexbox's content box. The <i>cross size</i> of a line depends on whether the flexbox is <i>single-line</i> or <i>multi-line</i>: the <i>cross size</i> of the sole line in a <i>single-line</i> flexbox is the same as the <i>cross size</i> of the flexbox's content box, while the <i>cross size</i> of a line in a <i>multi-line</i> flexbox is the minimum size necessary to contain the <i>flexbox items</i> on the line, after aligning them with 'flex-align'. The lines themselves are then aligned within a flexbox with the 'flex-line-pack' property.</p>
Received on Thursday, 8 December 2011 00:45:28 UTC