h1 pagebreak without h2
I am formatting a book of poetry and have used this in the css to create a page break between each poem.
h1 {
page-break-before: always;
}
My problem is it is breaking at h2 as well. Since some poems are broken into multiple parts with each part marked h2 this is not good.
Does anyone know how I can fix this??
Thanks!
|