- From: H?kon Wium Lie via cvs-syncmail <cvsmail@w3.org>
- Date: Mon, 31 Oct 2011 18:53:32 +0000
- To: public-css-commits@w3.org
Update of /sources/public/csswg/css3-gcpm
In directory hutz:/tmp/cvs-serv19951
Modified Files:
Overview.html
Log Message:
x
Index: Overview.html
===================================================================
RCS file: /sources/public/csswg/css3-gcpm/Overview.html,v
retrieving revision 1.155
retrieving revision 1.156
diff -u -d -r1.155 -r1.156
--- Overview.html 31 Oct 2011 14:47:10 -0000 1.155
+++ Overview.html 31 Oct 2011 18:53:30 -0000 1.156
@@ -3362,6 +3362,8 @@
<h2 id=selecting-columns-and-pages><span class=secno>16. </span>Selecting
columns and pages</h2>
+ <p class=issue>This is sketchy.
+
<p>Pseudo-elements are introduced to apply styling to the part of an
element that ends up on a certain page of column of that element. The
‘<code class=css>column(n)</code>’ pseudo-element selects
@@ -3370,9 +3372,11 @@
<div class=example>
<pre>
-div.chapter:column(3) /* the third column of the element */
-div.chapter:column(2n) /* all even columns */
-div.chapter:column(1):page(2) /* first column on page 2 */
+div.chapter::column(3) /* the third column of the element */
+div.chapter::column(2n) /* all even columns of the element */
+div.chapter::page(2) /* second page of the element */
+div.chapter::page-column(2,2) /* second column on second page */
+div.chapter::page(2)::column(2) /* second column, but only if it appears on the second page */
</pre>
</div>
<!--
Received on Monday, 31 October 2011 18:53:46 UTC