Quantcast
Channel: Pradeep K. Pant Tech Blog » CSS
Viewing all articles
Browse latest Browse all 2

CSS based page numbering in PDF creation

$
0
0

I frequently use PDF engine for generating PDF of multiple web pages a kind of book. Though you can use engine specific switch to insert page number(s) but if you want beautiful CSS based numbering then below code can be used. Just paste the code in a .CSS file and link to your html pages.

/* Page number at the bottom of page */

@page {

  @bottom-center {

    content: "Page " counter(page) " of " counter(pages);

    font-style: italic;

    color: green

    }

  }

Viewing all articles
Browse latest Browse all 2

Latest Images

Trending Articles





Latest Images