0

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?

Ethan Hunt
  • 173
  • 4
  • 17

1 Answers1

0

The below code might help as the counter increment property increases the countfor each occurence

@page{
  @bottom-center
  {
    counter-increment:page;
    counter : counter(page);
  }
}
Girija
  • 118
  • 3