- From: Tab Atkins Jr.. via cvs-syncmail <cvsmail@w3.org>
- Date: Fri, 27 Jan 2012 00:31:48 +0000
- To: public-css-commits@w3.org
Update of /sources/public/csswg/css3-flexbox
In directory hutz:/tmp/cvs-serv29686
Modified Files:
Overview.html Overview.src.html
Log Message:
Fix computed value for flex-item-align.
Index: Overview.html
===================================================================
RCS file: /sources/public/csswg/css3-flexbox/Overview.html,v
retrieving revision 1.115
retrieving revision 1.116
diff -u -d -r1.115 -r1.116
--- Overview.html 26 Jan 2012 23:41:17 -0000 1.115
+++ Overview.html 27 Jan 2012 00:31:46 -0000 1.116
@@ -29,11 +29,11 @@
<h1 id=head-box-flexible>CSS Flexible Box Layout Module</h1>
- <h2 class="no-num no-toc" id=w3c-working>Editor's Draft, 26 January 2012</h2>
+ <h2 class="no-num no-toc" id=w3c-working>Editor's Draft, 27 January 2012</h2>
<dl>
<dt>This version:
- <!--<dd><a href="http://www.w3.org/TR/2012/ED-css3-flexbox-20120126/">http://www.w3.org/TR/2012/ED-css3-flexbox-20120126/</a>-->
+ <!--<dd><a href="http://www.w3.org/TR/2012/ED-css3-flexbox-20120127/">http://www.w3.org/TR/2012/ED-css3-flexbox-20120127/</a>-->
<dd><a
@@ -1384,7 +1384,7 @@
<tr>
<th>Computed Value:
- <td>‘<code class=css>auto</code>’ computes to flexbox's
+ <td>‘<code class=css>auto</code>’ computes to parent's
‘<a href="#flex-align0"><code
class=property>flex-align</code></a>’; otherwise as specified
@@ -1411,7 +1411,11 @@
href="#flex-item-align"><code
class=property>flex-item-align</code></a>’ allows this default
alignment to be overridden for individual <a
- href="#flexbox-item"><i>flexbox items</i></a>.
+ href="#flexbox-item"><i>flexbox items</i></a> (for anonymous flexbox
+ items, ‘<a href="#flex-item-align"><code
+ class=property>flex-item-align</code></a>’ always matches the value
+ of ‘<a href="#flex-align0"><code
+ class=property>flex-align</code></a>’ on their associated flexbox).
<p>A value of <dfn id=flex-item-align-auto>‘<code
class=css>auto</code>’</dfn> for ‘<a
@@ -2409,7 +2413,7 @@
<td>no
- <td>‘auto’ computes to flexbox's ‘flex-align’;
+ <td>‘auto’ computes to parent's ‘flex-align’;
otherwise as specified
<td>visual
Index: Overview.src.html
===================================================================
RCS file: /sources/public/csswg/css3-flexbox/Overview.src.html,v
retrieving revision 1.114
retrieving revision 1.115
diff -u -d -r1.114 -r1.115
--- Overview.src.html 26 Jan 2012 23:41:17 -0000 1.114
+++ Overview.src.html 27 Jan 2012 00:31:46 -0000 1.115
@@ -652,7 +652,7 @@
<td>no
<tr>
<th>Computed Value:
- <td>''auto'' computes to flexbox's 'flex-align'; otherwise as specified
+ <td>''auto'' computes to parent's 'flex-align'; otherwise as specified
<tr>
<th>Media:
<td>visual
@@ -661,7 +661,7 @@
<td>no
</table>
- <p><i>Flexbox items</i> can be aligned in the <i>cross axis</i> of the current line of the flexbox, similar to 'flex-pack' but in the perpendendicular direction. 'flex-align' sets the default alignment for all of the flexbox's <i title="flexbox items">items</i>, including anonymous <i>flexbox items</i>. 'flex-item-align' allows this default alignment to be overridden for individual <i>flexbox items</i>.</p>
+ <p><i>Flexbox items</i> can be aligned in the <i>cross axis</i> of the current line of the flexbox, similar to 'flex-pack' but in the perpendendicular direction. 'flex-align' sets the default alignment for all of the flexbox's <i title="flexbox items">items</i>, including anonymous <i>flexbox items</i>. 'flex-item-align' allows this default alignment to be overridden for individual <i>flexbox items</i> (for anonymous flexbox items, 'flex-item-align' always matches the value of 'flex-align' on their associated flexbox).</p>
<p>A value of <dfn id="flex-item-align-auto">''auto''</dfn> for 'flex-item-align' computes to the value of 'flex-align' on the <i>flexbox item's</i> flexbox. The alignments are defined as:</p>
Received on Friday, 27 January 2012 00:31:55 UTC