File tree Expand file tree Collapse file tree
Expand file tree Collapse file tree Original file line number Diff line number Diff 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 ‘< code class =css > column(n)</ code > ’ 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 <!--
You can’t perform that action at this time.
0 commit comments