I'm trying to insert page number of my html document so that it appears in the pdf print. I use this css code but it doesn't work for me:
@page {
@bottom-center {
content: counter(page);
}
}
Do you have any ideas?
I'm trying to insert page number of my html document so that it appears in the pdf print. I use this css code but it doesn't work for me:
@page {
@bottom-center {
content: counter(page);
}
}
Do you have any ideas?
The below code might help as the counter increment property increases the countfor each occurence
@page{
@bottom-center
{
counter-increment:page;
counter : counter(page);
}
}