- From: Tab Atkins Jr.. via cvs-syncmail <cvsmail@w3.org>
- Date: Sat, 20 Aug 2011 00:18:27 +0000
- To: public-css-commits@w3.org
Update of /sources/public/csswg/css3-flexbox In directory hutz:/tmp/cvs-serv23497 Modified Files: Overview.html Overview.src.html Log Message: Removed the ability to specify "wrap" or "wrap-reverse" by itself. Just say "row wrap" instead. Index: Overview.html =================================================================== RCS file: /sources/public/csswg/css3-flexbox/Overview.html,v retrieving revision 1.34 retrieving revision 1.35 diff -u -d -r1.34 -r1.35 --- Overview.html 20 Aug 2011 00:16:17 -0000 1.34 +++ Overview.html 20 Aug 2011 00:18:25 -0000 1.35 @@ -438,8 +438,8 @@ <th>Values: <td> - <pre> [ row | row-reverse | column | column-reverse ] || - [ wrap | wrap-reverse ] + <pre> [ row | row-reverse | column | column-reverse ] + [ wrap | wrap-reverse ]? | [ horizontal | horizontal-reverse | horizontal-ltr | horizontal-rtl ] [ wrap | wrap-reverse | wrap-down | wrap-up ]? @@ -644,10 +644,8 @@ no wrap. */ div { flex-flow:horizontal-ltr wrap-down } /* main axis is horizontal, flow left-to-right, wrap down */ -div { flex-flow:wrap } /* main axis is inline direction(default), - wrap in block direction */ div { writing-mode:tb-rl; /* main axis is vertical top-to-bottom (as line direction), - flex-flow:vertical wrap-reverse } /* wrap direction is left-to-right (opposite to block direction) */</pre> + flex-flow:vertical wrap-reverse } /* cross axis is left-to-right (opposite to block direction) */</pre> </div> <h2 id=flex-order><span class=secno>5. </span> Display Order: the ‘<a @@ -2164,8 +2162,8 @@ <tr> <th><a class=property href="#flex-flow">flex-flow</a> - <td>[ row | row-reverse | column | column-reverse ] || [ wrap | - wrap-reverse ] | [ horizontal | horizontal-reverse | horizontal-ltr | + <td>[ row | row-reverse | column | column-reverse ] [ wrap | + wrap-reverse ]? | [ horizontal | horizontal-reverse | horizontal-ltr | horizontal-rtl ] [ wrap | wrap-reverse | wrap-down | wrap-up ]? | [ vertical | vertical-reverse | vertical-ttb | vertical-btt ] [ wrap | wrap-reverse | wrap-left | wrap-right ]? Index: Overview.src.html =================================================================== RCS file: /sources/public/csswg/css3-flexbox/Overview.src.html,v retrieving revision 1.33 retrieving revision 1.34 diff -u -d -r1.33 -r1.34 --- Overview.src.html 20 Aug 2011 00:16:17 -0000 1.33 +++ Overview.src.html 20 Aug 2011 00:18:25 -0000 1.34 @@ -188,8 +188,8 @@ <td><dfn>flex-flow</dfn></td> <tr> <th>Values: - <td><pre> [ row | row-reverse | column | column-reverse ] || - [ wrap | wrap-reverse ] + <td><pre> [ row | row-reverse | column | column-reverse ] + [ wrap | wrap-reverse ]? | [ horizontal | horizontal-reverse | horizontal-ltr | horizontal-rtl ] [ wrap | wrap-reverse | wrap-down | wrap-up ]? @@ -307,10 +307,8 @@ no wrap. */ div { flex-flow:horizontal-ltr wrap-down } /* main axis is horizontal, flow left-to-right, wrap down */ -div { flex-flow:wrap } /* main axis is inline direction(default), - wrap in block direction */ div { writing-mode:tb-rl; /* main axis is vertical top-to-bottom (as line direction), - flex-flow:vertical wrap-reverse } /* wrap direction is left-to-right (opposite to block direction) */</pre> + flex-flow:vertical wrap-reverse } /* cross axis is left-to-right (opposite to block direction) */</pre> </div>
Received on Saturday, 20 August 2011 00:18:29 UTC