I am encountering an issue with a table containing two simple table cells:
<table>
<tr>
<td>Test1</td>
</tr>
<tr>
<td>Test2</td>
</tr>
</table>
When I apply the following CSS to the table cells:
td {
border: 1px solid #000;
background-color: #CCC;
}
In Internet Explorer, the background is showing on top of the border. If I uncheck the background in the DOM explorer, I can see that the border is there.
I suspect this may be related to a parent element, but there are many parent elements and I cannot paste all of the code here.
Does anyone have any insight into what might be causing this issue?