- From: Tab Atkins Jr.. via cvs-syncmail <cvsmail@w3.org>
- Date: Mon, 30 Jan 2012 18:12:46 +0000
- To: public-css-commits@w3.org
Update of /sources/public/csswg/css3-flexbox In directory hutz:/tmp/cvs-serv13635 Modified Files: Overview.html Overview.src.html Log Message: Add 'flex-line-pack:distribute', per mailing list. Index: Overview.html =================================================================== RCS file: /sources/public/csswg/css3-flexbox/Overview.html,v retrieving revision 1.125 retrieving revision 1.126 diff -u -d -r1.125 -r1.126 --- Overview.html 30 Jan 2012 18:06:35 -0000 1.125 +++ Overview.html 30 Jan 2012 18:12:44 -0000 1.126 @@ -1637,7 +1637,7 @@ <tr> <th><a href="http://dev.w3.org/csswg/css-module/#values">Value</a>: - <td>start | end | center | justify | stretch + <td>start | end | center | justify | distribute | stretch <tr> <th>Initial: @@ -1720,6 +1720,17 @@ the remaining lines in the flexbox are distributed so that the empty space between any two adjacent lines is the same. + <dt><dfn id=flex-line-pack-distribute>distribute</dfn> + + <dd>Lines are evenly distributed in the flexbox, with half-size spaces on + either end. If the leftover free-space is negative or there is only a + single line in the flexbox, this value is identical to ‘<a + href="#flex-line-pack-center"><code class=css>center</code></a>’. + Otherwise, the lines in the flexbox are distributed such that the empty + space between any two adjacent lines is the same, and the empty space + before the first and after the last lines in the flexbox are half the + size of the other empty spaces. + <dt><dfn id=flex-line-pack-stretch>stretch</dfn> <dd>Lines stretch to take up the remaining space. If the leftover @@ -2408,7 +2419,7 @@ <tr> <th><a class=property href="#flex-line-pack0">flex-line-pack</a> - <td>start | end | center | justify | stretch + <td>start | end | center | justify | distribute | stretch <td>start @@ -2512,8 +2523,9 @@ <li>cross-start, <a href="#cross-start" title=cross-start><strong>2.</strong></a> - <li>distribute, <a href="#flex-pack-distribute" - title=distribute><strong>5.1.</strong></a> + <li>distribute, <a href="#flex-line-pack-distribute" + title=distribute><strong>6.1.</strong></a>, <a + href="#flex-pack-distribute" title=distribute><strong>5.1.</strong></a> <li>distribute the free space, <a href="#distribute-the-free-space" title="distribute the free space"><strong>7.</strong></a> Index: Overview.src.html =================================================================== RCS file: /sources/public/csswg/css3-flexbox/Overview.src.html,v retrieving revision 1.123 retrieving revision 1.124 diff -u -d -r1.123 -r1.124 --- Overview.src.html 30 Jan 2012 18:06:01 -0000 1.123 +++ Overview.src.html 30 Jan 2012 18:12:44 -0000 1.124 @@ -796,7 +796,7 @@ <td><dfn>flex-line-pack</dfn> <tr> <th><a href="http://dev.w3.org/csswg/css-module/#values">Value</a>: - <td>start | end | center | justify | stretch + <td>start | end | center | justify | distribute | stretch <tr> <th>Initial: <td>start @@ -832,6 +832,9 @@ <dt><dfn id='flex-line-pack-justify'>justify</dfn></dt> <dd>Lines are evenly distributed in the flexbox. If the leftover free-space is negative or there is only a single line in the flexbox, this value is identical to ''start''. Otherwise, the <i>cross-start</i> edge of the first line in the flexbox is placed flush with the <i>cross-start</i> content edge of the flexbox, the <i>cross-end</i> edge of the last line in the flexbox is placed flush with the <i>cross-end</i> content edge of the flexbox, and the remaining lines in the flexbox are distributed so that the empty space between any two adjacent lines is the same.</dd> + <dt><dfn id='flex-line-pack-distribute'>distribute</dfn></dt> + <dd>Lines are evenly distributed in the flexbox, with half-size spaces on either end. If the leftover free-space is negative or there is only a single line in the flexbox, this value is identical to ''center''. Otherwise, the lines in the flexbox are distributed such that the empty space between any two adjacent lines is the same, and the empty space before the first and after the last lines in the flexbox are half the size of the other empty spaces.</dd> + <dt><dfn id='flex-line-pack-stretch'>stretch</dfn></dt> <dd>Lines stretch to take up the remaining space. If the leftover free-space is negative, this value is identical to ''start''. Otherwise, the free-space is split equally between all of the lines, increasing their cross size. </dl>
Received on Monday, 30 January 2012 18:12:48 UTC