I have a table with two simple table cells:
<table>
<tr>
<td>Test1</td>
</tr>
<tr>
<td>Test2</td>
</tr>
</table>
And I add the following CSS to the table cells:
td {
border: 1px solid #000;
background-color: #CCC;
}
For some reason when I view this in IE it shows the background on TOP of the border, if I uncheck the background in DOM explorer I can see the border is there.
I guess this has something to do with a parent element, but there are soooo many parent elements I can't paste all that code here.
Anyone has an idea what this might be?