Is it possible to print HTML pages with custom headers and footers on each printed page?
I\'d like to add the word \"UNCLASSIFIED\" in Red, Arial, size 16pt to the t
@Daniel
made a comment on the question in 2012 about the lack of support for the CSS3 features: top-center
& bottom-center
.
Well, In Chrome 73+, the following snippet works, where header
and footer
are
and elements defined within the page.
@page {
@top-center { content: element(header) }
}
@page {
@bottom-center { content: element(footer) }
}