I had a similar problem with two browsers, the absolute position was crazy. In the styles section I had.
td.Cir {width:7in; height:7in; background-image:url('clock.png');
background-size: 45%; background-position: center;
background-repeat:no-repeat; position:relative; font-size:28pt;
min-width:7in; max-width:7in; text-shadow: -1px 0 blue, 0 1px blue,
1px 0 blue, 0 -1px blue;}
In the table I had
</td></tr><tr><td class='Cir'>...</td><td>...</td></tr>
I changed the code to
<table><tr><td class='Cir'>...</td><td>...</td></tr></table>
and Edge and IE are now working fine
source
share