csswg/css3-gcpm Overview.src.html,1.129,1.130

Update of /sources/public/csswg/css3-gcpm
In directory hutz:/tmp/cvs-serv28366

Modified Files:
	Overview.src.html 
Log Message:
aligning footnote description with float mk2

Index: Overview.src.html
===================================================================
RCS file: /sources/public/csswg/css3-gcpm/Overview.src.html,v
retrieving revision 1.129
retrieving revision 1.130
diff -u -d -r1.129 -r1.130
--- Overview.src.html	21 Sep 2011 19:19:56 -0000	1.129
+++ Overview.src.html	23 Sep 2011 07:35:59 -0000	1.130
@@ -979,10 +979,13 @@
 
 <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%;
   }
 }
@@ -992,22 +995,18 @@
 
 
 <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 'gr' 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:
@@ -1015,8 +1014,8 @@
 <pre>
 @page {
   @footnote { 
-    float: bottom right multicol;
-    width: 1gr;
+    float: bottom-corner;
+    width: 100%;
   }
 }
 </pre>
@@ -3007,7 +3006,7 @@
 <ul>
 <li>one new value on float: ''multicol'' (listed in the previous section)
 <li>one new property: 'float-offset'
-<li>one new unit: ''gr''
+<!--<li>one new unit: ''gr''-->
 </ul>
 
 <p>The strategy for achieving advanced multi-column layout is similar
@@ -3031,6 +3030,7 @@
 the position established by the 'float' property. Fractions on the
 'gr' unit refer to fractions of the last counted gap or column.
 
+
 <p>When used on the 'width' property, the 'gr' unit identifies a
 length by counting gaps and columns, starting at the point where the
 element naturally finds itself and continuing in the direction of

Received on Friday, 23 September 2011 07:36:07 UTC