Page selectors
First page
@page {
size: A4;
margin: 1cm;
}
@page:first {
background: red;
}Left and right selector
Blank pages
Nth selector
Named pages
Last updated
@page:right {
@bottom-right {
content: 'Page: ' counter(page);
}
}
@page:left {
@bottom-left {
content: 'Page: ' counter(page);
}
}@page:blank {
background: lightgrey;
}@page wide-table {
size: A4 landscape;
}
/* Print any table with the class 'wide' on a landscape orientated page */
table.wide {
page: wide-table;
}