Skip to content

Commit e809b4f

Browse files
committed
revising text on regions
1 parent 5c8a0de commit e809b4f

1 file changed

Lines changed: 17 additions & 0 deletions

File tree

css3-gcpm/Overview.src.html

Lines changed: 17 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -3165,10 +3165,27 @@ <h3>Selecting columns</h3>
31653165
</pre>
31663166
</div>
31673167

3168+
<!--
31683169
31693170
<h3>Turning columns into regions</h3>
31703171
31713172
<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.
3173+
-->
3174+
3175+
<p>To underline the fact that columns are regions, the "region" keyword can also be used to select columns.
3176+
3177+
3178+
<div class=example>
3179+
<pre>
3180+
div.chapter::region(3) /* the 3rd region of the element */
3181+
div.chapter::region(2n) /* all even regions of the element */
3182+
div.chapter::region(3+) /* all regions but the 1st and 2nd */
3183+
div.chapter::region(2,2) /* second region on second page */
3184+
div.chapter::region(*,2) /* all regions on the second page */
3185+
div.chapter::region(,2) /* all columns on the second page */
3186+
</pre>
3187+
</div>
3188+
31723189

31733190
<div class=example>
31743191
<img alt="sample rendering" src=regions.png>

0 commit comments

Comments
 (0)