I have a table coded in HTML as follows;
<table border="1" class="tableBasic">
<thead>
<tr>
<th rowspan="2">Head Row 1</th>
<th rowspan="2">Head Row 1</th>
<th rowspan="2">Head Row 1</th>
<th colspan="4">Head Row 1</th>
</tr>
<tr>
<th>Head Row 2</th>
<th>Head Row 2</th>
<th>Head Row 2</th>
<th>Head Row 2</th>
</tr>
</thead>
</table>
So this is a table header spanning 2 rows.
.tableBasic thead{
background: url("/images/tbl_header.png") repeat-x scroll 0 0 transparent;
}
Is there a rendering difference for the background image between IE and Firefox?
While IE shows the background image as spanning 2 rows (i.e. equals 2 row height), Firefox just shows it for the first row (and does not show any background for the 2nd row)
The background image is tall enough to span 2 rows height. Unfortunately I won't be able to modify the HTML code and only can control this from the CSS.
How do I fix this issue in CSS?
IE

Firefox
