The footnotes are always generated from the bottom up. But I want to let them generate from top to bottom. So that the footnotes start at the same height on each side, if there are any. I managed with position:absolute and top:, to position them evenly, but Prince don't fills the "footnotes-area", even though enough space is available, if I position the footnotes-area on the page margin or padding.
Picture:
There are more footnotes in the text, but only one can be listed below. But the background color shows that the Area is large enough.
Picture:
There are more footnotes in the text, but only one can be listed below. But the background color shows that the Area is large enough.
@page {
size: a4;
margin-top: 2cm;
margin-bottom: 1cm;
margin-left: 3.5cm;
margin-right: 2.5cm;
padding-bottom: 6cm;
@footnotes {
border-clip: 5cm;
border-top: 1px solid black;
position: absolute;
height: 5cm;
background-color: gray;
top: 22cm;
}
}
.fn {
margin-left: 18px;
text-align: left;
color: black;
float: footnote;
font-size: 8pt;
color:red;
}