@@ -979,10 +979,13 @@ <h3>The footnote area</h3>
979979
980980< div class ="example ">
981981
982+ < p > These rules place the footnote area at the bottom of the page, spanning all columns:
983+
982984< pre >
983985@page {
984986 @footnote {
985- float: bottom page;
987+ float: bottom;
988+ column-span: all;
986989 width: 100%;
987990 }
988991}
@@ -992,31 +995,27 @@ <h3>The footnote area</h3>
992995
993996
994997< div class ="example ">
995- < p > These rules place the footnote area in the bottom left corner of the page :
998+ < p > These rules place the footnote area at the bottom of the first column :
996999
9971000< pre >
9981001@page {
9991002 @footnote {
1000- position: fixed;
1001- bottom: 0;
1002- left: 0;
1003- width: 5em;
1003+ float: bottom;
1004+ width: 100%;
10041005 }
10051006}
10061007</ pre >
10071008</ div >
10081009
1009- < p > Inside @footnote, the 'gr' unit is based on the oldest multicol
1010- element in the document.
10111010
10121011< div class ="example issue ">
10131012< p > This code places the footnote area at the bottom of the right column:
10141013
10151014< pre >
10161015@page {
10171016 @footnote {
1018- float: bottom right multicol ;
1019- width: 1gr ;
1017+ float: bottom-corner ;
1018+ width: 100% ;
10201019 }
10211020}
10221021</ pre >
@@ -3007,7 +3006,7 @@ <h2>Advanced multi-column layout (part of mk2, now drprecated)</h2>
30073006< ul >
30083007< li > one new value on float: ''multicol'' (listed in the previous section)
30093008< li > one new property: 'float-offset'
3010- < li > one new unit: ''gr''
3009+ <!--< li>one new unit: ''gr''-->
30113010</ ul >
30123011
30133012< p > The strategy for achieving advanced multi-column layout is similar
@@ -3031,6 +3030,7 @@ <h2>Advanced multi-column layout (part of mk2, now drprecated)</h2>
30313030the position established by the 'float' property. Fractions on the
30323031'gr' unit refer to fractions of the last counted gap or column.
30333032
3033+
30343034< p > When used on the 'width' property, the 'gr' unit identifies a
30353035length by counting gaps and columns, starting at the point where the
30363036element naturally finds itself and continuing in the direction of
0 commit comments