Dear all,
I've added some styles for printing to an html file. Everything was fine with Firefox and IE until I added page-break-after: always;
to 1 div-class.
Now IE collapses as soon as I try to get the print preview.
Does anyone know something about this problem and how it can be solved?
mkjoker
IE6 collapses on page-break-after: always;
Hi mkjoker,
IE should handel "page-break-after: always;" so it could be something else in combination with that.
Try commenting out all the other styles and see if print preview works then slowly add back the styles to try and find what is causing the problem.
Hope that helps
IE6 collapses on page-break-after: always;
Hi Tony,
good idea!
I did as you suggested and it turned out that (in @media print {} ) IE can't have any margin, padding or border assigend to a div that has page-break-after: allways; at the same time.
I prefered to abandon the page-break-after.
mkjoker