I understand that the CSS page-break-inside:avoid instruction is supposed to prevent a page break within a div when an HTML document is printed. Through searching the internet, I have found that it is only supported by Opera and IE8. Is there a work around that allows me to prevent page breaks in Firefox (3.6) or IE versions less than 8?

link|improve this question

Sorry, no solution but it does work for me in Mac OS Firefox 3.6.10 but freezes-up in Mac OS Opera 10.62, doesn't work in Safari. – daustin777 Oct 7 '10 at 23:59
feedback

3 Answers

Sorry, my answer is "not possible", although I'd love it if anyone can prove me wrong.

I've ran into the same problem lately, and after doing a little bit of research I decided to just go with

page-break-after: always;

after every several number of elements.

http://reference.sitepoint.com/css/page-break-inside

http://reference.sitepoint.com/css/page-break-after

link|improve this answer
feedback

Try using white-space:nowrap instead. This should stop text from breaking inside the element, at least while on screen. I'm not sure how it translates to print media, but it's worth a try.

More info: http://www.blooberry.com/indexdot/css/properties/text/whitespace.htm

link|improve this answer
feedback

How about just matching all element inside your element, except the first ones, and have them not break-before

#yourelement *+*{
page-break-before: avoid;
}
link|improve this answer
The question is asking about FF and old IE compatability, not how to use the css property. – aaaidan Oct 10 '11 at 21:00
Note that I'm using page-break-before, not page-break-inside which is not supported, that's why you have to use this strange selector to get the same effect. Secondly this post is almost 6 months old. – Gerben Oct 11 '11 at 16:40
This won't work for ≤IE7 and Firefox doesn't support avoid either. – Knu Feb 3 at 22:43
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.