We are having issues with coloring the background of a table. We have a typical zebra-colored table, where each odd row is colored and the other is white, and the background doesn't render at all in prince.
The css is very flexible.. so it is bound to match something :
And here is an excerpt of the markup:
Any idea how to fix this? Is it a known issue?
The css is very flexible.. so it is bound to match something :
.odd, tr.odd, .odd td {
background-color: #efefef;
}
And here is an excerpt of the markup:
<tr class="odd">
<td>...</td>
<td>...</td>
</tr>
<tr>
<td>...</td>
<td>...</td>
</tr>
Any idea how to fix this? Is it a known issue?