Hello,
I'm not sure if this is a bug, or if something I'm not understanding correctly, but I'm having an issue getting my page footers to display on every page. So for example, if I have an html page with a lot of content which causes an auto page break, the footer is only displayed on the last page and not on every one.
I have added div#page-footer at the bottom of my html document, and then use the following CSS to display it:
@page {
@bottom-left{
content: flow(footer, last);
}
}
div#page-footer { flow: static(header); }
This method works correctly for page headers (showing on every page), but not for footers it seems. Can anyone please shed some light on this?
I'm not sure if this is a bug, or if something I'm not understanding correctly, but I'm having an issue getting my page footers to display on every page. So for example, if I have an html page with a lot of content which causes an auto page break, the footer is only displayed on the last page and not on every one.
I have added div#page-footer at the bottom of my html document, and then use the following CSS to display it:
@page {
@bottom-left{
content: flow(footer, last);
}
}
div#page-footer { flow: static(header); }
This method works correctly for page headers (showing on every page), but not for footers it seems. Can anyone please shed some light on this?