I've got an HTML-element, let's say nav. To apply some fancy styles to it, I use nav:after with the following code:
header nav:after {
content: "";
width: 925px;
height: 54px;
display: block;
left: -4px;
top: -4px;
z-index: -1;
position: absolute;
}
In all browsers, I get the desired result with that code. Only Internet Explorer 9 behaves differently.
The :after-element is positioned 4px too high and 4px too much to the left.
As you can see, this is clearly the result of the CSS, but the -4px top and left are needed to position the element correctly in all other browsers.
If I set top and left to zero, it looks fine in IE9, but wrong in all other browsers.
So either way, it looks wrong - so somehow I have to decide for what kind of browser I want to style. There must be some workaround, what can I do?