I have a section of a document that spans multiple pages and I want to use a different header/footer on the first page. I thought the :first selector would be what I want but it doesn't seem to be working.
It seems to be having *some* effect in that the header is empty on the first page, but it's not displaying the content that I'm adding.
@page mypage:first {
@top {
/* Styles here */
}
}
@page mypage {
@top {
/* Styles here */
}
}
It seems to be having *some* effect in that the header is empty on the first page, but it's not displaying the content that I'm adding.
Edited by quiredan