For long tables that wrap to the next page, we want to change from the default behavior to box-decoration-break:slice.
Having this HTML:
There is a phantom horizontal border line at the top of the second page, spanning columns 2 and 3!
I Hope you can fix this for the next release (that we require for some other bug fix).
Having this HTML:
<!DOCTYPE html>
<html>
<head>
<title>Table</title>
<style media="all">
body { font-size:12pt; }
table { border-collapse:collapse; }
td { border:thin solid black; }
.hidden { display:none; }
</style>
<style media="print">
@page {
size: A5 landscape;
margin: 30mm 18mm 25mm 20mm;
}
table { box-decoration-break: slice; }
</style>
</head>
<body>
<table>
<tbody>
<tr>
<td>VNV</td>
<td>Parameterization</td>
<td>VandV</td>
</tr>
<tr>
<td>Applicability</td>
<td colspan="2">Tested in the scope of the module integration test.</td>
</tr>
<tr>
<td colspan="3">
<ol>
<li>item</li>
<li>item</li>
<li>item</li>
<li>item</li>
<li>item</li>
<li>item</li>
<li>item</li>
<li>item</li>
<li>item</li>
<li>item</li>
<li>item</li>
<li>item</li>
<li>item</li>
<li>item</li>
<li>item</li>
<li>item</li>
</ol>
</td>
</tr>
</tbody>
</table>
</body>
</html>
There is a phantom horizontal border line at the top of the second page, spanning columns 2 and 3!
I Hope you can fix this for the next release (that we require for some other bug fix).
- - -
Johann