Reputation: 1
I am using Page-break-after:always for my div and it works fine in FF but in IE the page-break does not appear this is my div
<div style="page-break-after:always">
...
...
...
...
</div>
Upvotes: 0
Views: 49
Reputation: 2542
<div style="word-break: break-all;">
...
...
...
...
</div>
Upvotes: 1