- From: H?kon Wium Lie via cvs-syncmail <cvsmail@w3.org>
- Date: Mon, 26 Dec 2011 15:03:55 +0000
- To: public-css-commits@w3.org
Update of /sources/public/csswg/css3-gcpm
In directory hutz:/tmp/cvs-serv734
Modified Files:
Overview.html
Log Message:
mechanically generated
Index: Overview.html
===================================================================
RCS file: /sources/public/csswg/css3-gcpm/Overview.html,v
retrieving revision 1.187
retrieving revision 1.188
diff -u -d -r1.187 -r1.188
--- Overview.html 26 Dec 2011 15:00:08 -0000 1.187
+++ Overview.html 26 Dec 2011 15:03:53 -0000 1.188
@@ -249,9 +249,6 @@
<ul class=toc>
<li><a href="#selecting-columns"><span class=secno>14.1.
</span>Selecting columns</a>
-
- <li><a href="#turning-columns-into-regions"><span class=secno>14.2.
- </span>Turning columns into regions</a>
</ul>
<li><a href="#regions-and-exclusions-examples"><span class=secno>15.
@@ -3585,13 +3582,26 @@
div.chapter::column(,2) /* all columns on the second page */
</pre>
</div>
+ <!--
- <h3 id=turning-columns-into-regions><span class=secno>14.2. </span>Turning
- columns into regions</h3>
+<h3>Turning columns into regions</h3>
- <p>A column that is moved from its natural position is called a region in
- this specification. Columns can be moved using floating or absolute
- positioning.
+<p>A column that is moved from its natural position is called a region in this specification. Columns can be moved using floating or absolute positioning.
+-->
+
+ <p>To underline the fact that columns are regions, the "region" keyword can
+ also be used to select columns.
+
+ <div class=example>
+ <pre>
+div.chapter::region(3) /* the 3rd region of the element */
+div.chapter::region(2n) /* all even regions of the element */
+div.chapter::region(3+) /* all regions but the 1st and 2nd */
+div.chapter::region(2,2) /* second region on second page */
+div.chapter::region(*,2) /* all regions on the second page */
+div.chapter::region(,2) /* all columns on the second page */
+</pre>
+ </div>
<div class=example> <img alt="sample rendering" src=regions.png>
<p>In this example, the multicol layout is changed so that the image
Received on Monday, 26 December 2011 15:03:58 UTC