I want to make footers on the print HTML pages
<STYLE TYPE="text/css"> @media print { @page:left{ @bottom-left { content: "Page " counter(page) " of " counter(pages); } } } </STYLE> Why it does not work, or am I doing something wrong?
@media print { @page:left{ @bottom-left ...">
Your question has already been.
https://stackoverflow.com/questions/6664752/how-to-add-print-headers-and-footers-in-html-css-and-javascript or https://stackoverflow.com/questions/6664752/how- to-add-print-headers-and-footers-in-html-css-and-javascript
There is no direct solution. You can use tables with a fixed height, which of course is not convenient in terms of editing the content, or use pdf where you can control how the page looks.
Source: https://ru.stackoverflow.com/questions/556323/
All Articles