- From: Tab Atkins Jr.. via cvs-syncmail <cvsmail@w3.org>
- Date: Fri, 30 Sep 2011 22:31:13 +0000
- To: public-css-commits@w3.org
Update of /sources/public/csswg/css3-flexbox
In directory hutz:/tmp/cvs-serv29224
Modified Files:
Overview.html Overview.src.html
Log Message:
Added paragraph about the effect of 'visiblity:collapse' on flexbox items.
Index: Overview.html
===================================================================
RCS file: /sources/public/csswg/css3-flexbox/Overview.html,v
retrieving revision 1.71
retrieving revision 1.72
diff -u -d -r1.71 -r1.72
--- Overview.html 30 Sep 2011 16:04:48 -0000 1.71
+++ Overview.html 30 Sep 2011 22:31:11 -0000 1.72
@@ -140,6 +140,10 @@
<li><a href="#flex-items"><span class=secno>2.2. </span> Flexbox
Items</a>
+ <ul class=toc>
+ <li><a href="#abspos-flexbox-items"><span class=secno>2.2.1. </span>
+ Positioning Absolutely Positioned Flexbox Items</a>
+ </ul>
</ul>
<li><a href="#ordering-orientation"><span class=secno>3. </span> Ordering
@@ -466,6 +470,16 @@
positioned and thus out of flow.</p>
</div>
+ <p>Similar to table cells, flexbox items respond specially to the
+ ‘<code class=css>collapse</code>’ value of the ‘<code
+ class=property>visibility</code>’ property. When a flexbox item is
+ set to ‘<code class=css>visibility: collapse;</code>’, the
+ item does not generate a box at all (identical to setting ‘<code
+ class=css>display: none;</code>’).
+
+ <h4 id=abspos-flexbox-items><span class=secno>2.2.1. </span> Positioning
+ Absolutely Positioned Flexbox Items</h4>
+
<p>Absolutely positioned children of a flexbox are not <a
href="#flexbox-item"><i>flexbox items</i></a>, but their "static position"
(their position when the ‘<code
@@ -1667,7 +1681,7 @@
title=flex-pack><strong>5.1.</strong></a>
<li>hypothetical neighbors, <a href="#hypothetical-neighbors"
- title="hypothetical neighbors"><strong>2.2.</strong></a>
+ title="hypothetical neighbors"><strong>2.2.1.</strong></a>
<li>justify, <a href="#flex-line-pack-justify"
title=justify><strong>6.1.</strong></a>, <a href="#flex-pack-justify"
Index: Overview.src.html
===================================================================
RCS file: /sources/public/csswg/css3-flexbox/Overview.src.html,v
retrieving revision 1.72
retrieving revision 1.73
diff -u -d -r1.72 -r1.73
--- Overview.src.html 30 Sep 2011 22:28:28 -0000 1.72
+++ Overview.src.html 30 Sep 2011 22:31:11 -0000 1.73
@@ -187,6 +187,8 @@
<p>Notice that block element "not-an-item6.3" is not a separate flexbox item, because it is contained inside an inline element which is being wrapped into an anonymous flex item. Similarly, the block element "not-an-item1.5" is not a flexbox item, because it's absolutely positioned and thus out of flow.</p>
</div>
+ <p>Similar to table cells, flexbox items respond specially to the ''collapse'' value of the 'visibility' property. When a flexbox item is set to ''visibility: collapse;'', the item does not generate a box at all (identical to setting ''display: none;'').</p>
+
<h4 id='abspos-flexbox-items'>
Positioning Absolutely Positioned Flexbox Items</h4>
Received on Friday, 30 September 2011 22:31:15 UTC