- From: H?kon Wium Lie via cvs-syncmail <cvsmail@w3.org>
- Date: Fri, 23 Sep 2011 07:36:12 +0000
- To: public-css-commits@w3.org
Update of /sources/public/csswg/css3-gcpm
In directory hutz:/tmp/cvs-serv28440
Modified Files:
Overview.html
Log Message:
x
Index: Overview.html
===================================================================
RCS file: /sources/public/csswg/css3-gcpm/Overview.html,v
retrieving revision 1.124
retrieving revision 1.125
diff -u -d -r1.124 -r1.125
--- Overview.html 21 Sep 2011 19:20:09 -0000 1.124
+++ Overview.html 23 Sep 2011 07:36:10 -0000 1.125
@@ -99,13 +99,13 @@
<h1>CSS Generated Content for Paged Media Module</h1>
- <h2 class="no-num no-toc" id=w3c-working>Editor's Draft 21 September 2011</h2>
+ <h2 class="no-num no-toc" id=w3c-working>Editor's Draft 23 September 2011</h2>
<dl>
<dt>This version:
<dd><a
- href="http://www.w3.org/TR/2011/ED-css3-gcpm-20110921/">http://www.w3.org/TR/2011/ED-css3-gcpm-20110921</a>
+ href="http://www.w3.org/TR/2011/ED-css3-gcpm-20110923/">http://www.w3.org/TR/2011/ED-css3-gcpm-20110923</a>
<dt>Latest version:
@@ -1288,10 +1288,14 @@
<p class=issue>
<div class=example>
+ <p>These rules place the footnote area at the bottom of the page, spanning
+ all columns:
+
<pre>
@page {
@footnote {
- float: bottom page;
+ float: bottom;
+ column-span: all;
width: 100%;
}
}
@@ -1299,32 +1303,26 @@
</div>
<div class=example>
- <p>These rules place the footnote area in the bottom left corner of the
- page:
+ <p>These rules place the footnote area at the bottom of the first column:
<pre>
@page {
@footnote {
- position: fixed;
- bottom: 0;
- left: 0;
- width: 5em;
+ float: bottom;
+ width: 100%;
}
}
</pre>
</div>
- <p>Inside @footnote, the ‘<code class=property>gr</code>’ unit
- is based on the oldest multicol element in the document.
-
<div class="example issue">
<p>This code places the footnote area at the bottom of the right column:
<pre>
@page {
@footnote {
- float: bottom right multicol;
- width: 1gr;
+ float: bottom-corner;
+ width: 100%;
}
}
</pre>
@@ -3632,8 +3630,7 @@
<li>one new property: ‘<a href="#float-offset"><code
class=property>float-offset</code></a>’
-
- <li>one new unit: ‘<code class=css>gr</code>’
+ <!--<li>one new unit: ''gr''-->
</ul>
<p>The strategy for achieving advanced multi-column layout is similar to
Received on Friday, 23 September 2011 07:36:18 UTC