Closed
Bug 1393333
Opened 9 years ago
Closed 9 years ago
table border not displaying when in print preview
Categories
(Core :: Layout: Tables, defect)
Tracking
()
RESOLVED
DUPLICATE
of bug 1392882
People
(Reporter: dsdxdc, Unassigned)
Details
Attachments
(1 file)
|
154.24 KB,
image/jpeg
|
Details |
User Agent: Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:55.0) Gecko/20100101 Firefox/55.0
Build ID: 20170816210634
Steps to reproduce:
i tested the following codes with Firefox 55.0.2 (64-bit) (Ubuntu) / Firefox 55.0.2 (32-bit) (Windows)
<style>
table {
border-collapse: collapse;
border: 1px solid #000;
}
td {
border: 1px solid #000;
}
</style>
<table>
<thead>
<tr>
<td>Header</td>
</tr>
</thead>
<tbody>
<?php
for ($i = 0; $i < 50; $i++)
{
?>
<tr>
<td><?php echo $i; ?></td>
</tr>
<?php
}
?>
</tbody>
</table>
Actual results:
when viewed at the website itself, the borders display nicely. but during print preview, the long table breaks into 2 pages. borders still display nicely at page one but missing at page two.
if remove "border-collapse: collapse", the borders would appear at every pages.
Expected results:
borders should appears even at the second page or thereafter.
Comment 1•9 years ago
|
||
Same description and same code scenario as bug 1392882. Resolving accordingly
Status: UNCONFIRMED → RESOLVED
Closed: 9 years ago
Resolution: --- → DUPLICATE
You need to log in
before you can comment on or make changes to this bug.
Description
•