I have a document created with html that can have multiple pages. I would like to add the current pagenumber at the bottom of each page like "Page 1/x"
I have found this but it does not work in chrome.
@page {
@bottom {
content: "Page " counter(page) " of " counter(pages)
}
}
Can anybody please help me out?