Reputation: 1096
The table borders are not printed on the second page, only with Firefox, this problem doesn't occur on Chrome, IE or Opera.
It is important to note that this is happening only lately.
Update :
I tried these answers but still not fixed :Same behavior
Upvotes: 1
Views: 2628
Reputation: 8111
Try this
<style>
<!--
@media print {
table.your_particular_class {
border-collapse: unset;
}
}
-->
</style>
If you don't have a class just use table
Upvotes: 2
Reputation: 56
The problem occurs if the css property border-collapse is set to collapse or separate. Try to set the css border-collapse property to "border-collapse:initial", it resolve to me, and don't forget to set the attribute cellspacing=0 to the table.
Upvotes: 2