Currently, I am working on generating a HTML file that is print-ready and have been using CSS @page
for this purpose. However, I have encountered a major issue with displaying page numbers utilizing @bottom-right
and other similar solutions. Could there be a common reason behind this problem such as deprecation? I have tried even the simplest solutions like:
@page {
@bottom-right {
content: counter(page);
}
}
Unfortunately, despite trying various approaches, the pagination or any other associated content fails to appear on the file.