- From: H?kon Wium Lie via cvs-syncmail <cvsmail@w3.org>
- Date: Mon, 26 Dec 2011 15:03:46 +0000
- To: public-css-commits@w3.org
Update of /sources/public/csswg/css3-gcpm In directory hutz:/tmp/cvs-serv702 Modified Files: Overview.src.html Log Message: revising text on regions Index: Overview.src.html =================================================================== RCS file: /sources/public/csswg/css3-gcpm/Overview.src.html,v retrieving revision 1.193 retrieving revision 1.194 diff -u -d -r1.193 -r1.194 --- Overview.src.html 26 Dec 2011 14:59:59 -0000 1.193 +++ Overview.src.html 26 Dec 2011 15:03:44 -0000 1.194 @@ -3165,10 +3165,27 @@ </pre> </div> +<!-- <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>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>
Received on Monday, 26 December 2011 15:03:51 UTC