Is it possible to handle a specific class differently on the first page of a document?
Let's say we have:
with
This doesn’t work, but illustrates, what I’m looking for.
Thanks for your help!
Tobias
Let's say we have:
<section class="contentBottom">Blablablabla</section>
with
.contentBottom {
margin-top: 3.5em;
}
@page:first {
.contentBottom {
float: bottom;
margin-top: 0;
margin-bottom: 5mm;
}
}
This doesn’t work, but illustrates, what I’m looking for.
Thanks for your help!
Tobias