Why @page is not working for printing an HTML page?

37 Views Asked by At

I used the @media print attribute to custom printing of pdf file.

Everything is going fine, but I didn't succeed to make the (page count / title) work using @page.

print.css

@media print {
   @page {
        size: A4;

        @bottom-right {
            content: counter(page) " of " counter(pages);
        }
        @bottom-center {
            content: doctitle content();;
        }
    }
}

Do I need something more like a js library to make it work ?

Thank you for your help.

0

There are 0 best solutions below