I've been looking around and I haven't quite seen how to do this, so here we go:
I've got some <div>'s with class of "figure", which I would like to float:top on every page except for the :first. My problem is that I can't seem to find a way to style classes with reference to the page they're on.
I was hoping it would be something like this:
or maybe:
...but I don't think these are even valid.
Is something like this possible at all? Am I anywhere near the solution?
Thanks,
Andrew
I've got some <div>'s with class of "figure", which I would like to float:top on every page except for the :first. My problem is that I can't seem to find a way to style classes with reference to the page they're on.
I was hoping it would be something like this:
.figure {
float: top;
}
@page :first .figure {
float: none;
}
or maybe:
.figure {
float: top;
}
@page :first {
.figure {
float: none;
}
}
...but I don't think these are even valid.
Is something like this possible at all? Am I anywhere near the solution?
Thanks,
Andrew