Skip to content

Commit 98706f8

Browse files
author
howcome
committed
machine-generated version
1 parent c6d7067 commit 98706f8

1 file changed

Lines changed: 30 additions & 5 deletions

File tree

css-gcpm/Overview.html

Lines changed: 30 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@
1111
<meta content="CSS Generated Content for Paged Media Module"
1212
name=dcterms.title>
1313
<meta content=text name=dcterms.type>
14-
<meta content=2013-09-10 name=dcterms.date>
14+
<meta content=2013-09-11 name=dcterms.date>
1515
<meta content="Håkon Wium Lie" name=dcterms.creator>
1616
<meta content=W3C name=dcterms.publisher>
1717
<meta content="http://dev.w3.org/csswg/css3-gcpm/" name=dcterms.identifier>
@@ -42,13 +42,13 @@
4242

4343
<h1>CSS Generated Content for Paged Media Module</h1>
4444

45-
<h2 class="no-num no-toc" id=w3c-working>Editor's Draft 10 September 2013</h2>
45+
<h2 class="no-num no-toc" id=w3c-working>Editor's Draft 11 September 2013</h2>
4646

4747
<dl>
4848
<dt>This version:
4949

5050
<dd><a
51-
href="http://dev.w3.org/csswg/css3-gcpm/">http://www.w3.org/TR/2013/ED-css3-gcpm-20130910/</a>
51+
href="http://dev.w3.org/csswg/css3-gcpm/">http://www.w3.org/TR/2013/ED-css3-gcpm-20130911/</a>
5252

5353
<dt>Latest version:
5454

@@ -4219,18 +4219,43 @@ <h3 id=page-and-column-pseudo-elements><span class=secno>13.3.
42194219
</span><code class=property>page</code>’ and ‘<code
42204220
class=property>column</code>’ pseudo-elements</h3>
42214221

4222+
<p>The ‘<code class=css>page()</code>’ and ‘<code
4223+
class=css>column()</code>’ pseudo-element allows the selection of pages,
4224+
columns, and elements within.
4225+
4226+
<div class=example>
4227+
<pre>
4228+
article::column(2n) { /* select every other column of an article */
4229+
...
4230+
}
4231+
</pre>
4232+
</div>
4233+
4234+
<div class=example>
4235+
<pre>
4236+
article::page(left) { /* select all left pages in an article */
4237+
background: pink;
4238+
}
4239+
</pre>
4240+
</div>
4241+
42224242
<div class=example>
42234243
<pre>
42244244
article::page(left) p { /* select all p elements that appear on left pages in an article */
4225-
...
4245+
text-align: left;
42264246
}
42274247
</pre>
42284248
</div>
42294249

4250+
<p>Several syntax variations are possible.
4251+
42304252
<div class=example>
42314253
<pre>
4232-
article::column(2n) { /* select every other column of an article */
4254+
@page :left {
42334255
...
4256+
{
4257+
p { text-align: left }
4258+
}
42344259
}
42354260
</pre>
42364261
</div>

0 commit comments

Comments
 (0)