Question
Is it possible to suppress a footer from appearing on the last page of a prince-page-group?
Current Output:
http://screencast.com/t/Y2YxODg4YmMt
Here's a snippet of the current CSS I'm using:
Is it possible to suppress a footer from appearing on the last page of a prince-page-group?
Current Output:
http://screencast.com/t/Y2YxODg4YmMt
Here's a snippet of the current CSS I'm using:
div.map { prince-page-group: start }
@page map {
@top-left {
content: string(maptitle, first) ", Continued";
font-size: 1.2em;}
@bottom-right {
content:"Continued on next page";
font-size: .8em;
font-style: italic;
}
}
@page map :first {
@top-left {
content: normal;
}
}
@page map :last {
@bottom-right {
content: normal;
}
}