elsadek
elsadek

Reputation: 1096

Html table borders not printed on the second page, Firefox only

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.

enter image description here

Update :
I tried these answers but still not fixed :Same behavior

Upvotes: 1

Views: 2628

Answers (2)

Dennis
Dennis

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

CarlTuji
CarlTuji

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

Related Questions