I have a table with two simple table cells:
<table> <tr> <td>Test1</td> </tr> <tr> <td>Test2</td> </tr> </table>
And I will add the following CSS to the table cells:
td { border: 1px solid #000; background-color: #CCC; }
For some reason, when I look at this in IE, it shows the background at the top of the border, if I remove the background in the DOM Explorer, I see that there is a border.
I suppose this has something to do with the parent element, but there are many different parent elements into which I cannot paste all this code.
Does anyone have an idea what this could be?
source share