Page 1
Page 2
I have a problem with page-break-after in Google Chrome during printing. It seems that it\'s not working. I tried Firefox and it\'s ok there. My code is:
It is a hack, but Chrome doesn't support page-breaks very well. So try to use this instead:
Page 1
Page 2
And add this to your css:
html, body, .main, .tabs, .tabbed-content { float: none; }
.break-after {
display: block;
page-break-after: always;
position: relative;
}
.break-before {
display: block;
page-break-before: always;
position: relative;
}