I need some advice regarding a rendering issue I am experiencing in IE10. I have created an animated-flip effect that works perfectly in all the browsers I need it to. However, during testing, I noticed random border-like lines appearing for no apparent reason. These lines do not seem to be actual borders, outlines, or shadows. It appears that the child elements, such as the anchor in the example, are not being rendered correctly.
I am aware that a similar issue can occur in mobile Safari, where people use margin-whatever: -1
to fix it, but that solution does not seem to work here.
I have simplified the example to the minimum required to replicate the bug. Removing any of these styles seems to resolve the issue:
perspective: 2000px; // Removing this makes the animation look bad
border-radius: 6px; // Removing this changes the appearance of the modal
-ms-transform: rotateY(0);
transition: all 0.4s ease-in-out;