Display_Here
Display_Here

Reputation: 311

How can you print multiple pages with different sizes?

When you do something like

@page { size:8.5in 11in; margin: 2cm }

It affects all pages. Is there a way to have one page as a4, the other has a2, legal, etc?

Upvotes: 1

Views: 417

Answers (1)

Gleb Kemarsky
Gleb Kemarsky

Reputation: 10418

You can use pseudo-classes:

But

You can't change all CSS properties. You can only change the the margin, padding, border, and background properties of the page box. All other CSS properties will be ignored, and only the page box, not the document content on the page, will be affected.

Upvotes: 1

Related Questions