I'm trying to convert one more of my latex documents to XML+CSS (and subsequently putting together a Prince tips/hints sheet) and have run into a small snag that was easy in latex, but no so much with CSS.
Basically I'm trying to have the first page of a chapter have no header. It works wonderfully for the first chapter! However, subsequent chapters have the "test" in their header.
My document is structured like this:
Any ideas?
@page chapter {
@top-right {
content: "test";
}
}
@page chapter:first {
@top-right {
content: "";
}
}
document > chapter {
page: chapter;
}
Basically I'm trying to have the first page of a chapter have no header. It works wonderfully for the first chapter! However, subsequent chapters have the "test" in their header.
My document is structured like this:
<document>
<chapter />
<chapter />
<chapter />
</document>
Any ideas?