Skip to content

Commit 1ceeba0

Browse files
committed
x
1 parent c1d7f15 commit 1ceeba0

1 file changed

Lines changed: 7 additions & 3 deletions

File tree

css3-gcpm/Overview.html

Lines changed: 7 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -3362,6 +3362,8 @@ <h2 id=the-first-page-pseudo-element><span class=secno>15. </span>The
33623362
<h2 id=selecting-columns-and-pages><span class=secno>16. </span>Selecting
33633363
columns and pages</h2>
33643364

3365+
<p class=issue>This is sketchy.
3366+
33653367
<p>Pseudo-elements are introduced to apply styling to the part of an
33663368
element that ends up on a certain page of column of that element. The
33673369
&lsquo;<code class=css>column(n)</code>&rsquo; pseudo-element selects
@@ -3370,9 +3372,11 @@ <h2 id=selecting-columns-and-pages><span class=secno>16. </span>Selecting
33703372

33713373
<div class=example>
33723374
<pre>
3373-
div.chapter:column(3) /* the third column of the element */
3374-
div.chapter:column(2n) /* all even columns */
3375-
div.chapter:column(1):page(2) /* first column on page 2 */
3375+
div.chapter::column(3) /* the third column of the element */
3376+
div.chapter::column(2n) /* all even columns of the element */
3377+
div.chapter::page(2) /* second page of the element */
3378+
div.chapter::page-column(2,2) /* second column on second page */
3379+
div.chapter::page(2)::column(2) /* second column, but only if it appears on the second page */
33763380
</pre>
33773381
</div>
33783382
<!--

0 commit comments

Comments
 (0)