I'm trying to generate a print-ready HTML file and therefore started working with CSS @page
and everything around it. One big problem I'm facing is that I can't manage to display page numbers using @bottom-right
and all similar solutions. Do you know if there could be a general reason behind it (like it's deprecated, etc.), as I've tested even the simplest solutions like:
@page {
@bottom-right {
content: counter(page);
}
}
and still nothing seems to make the pagination or any other content appear.