Ie 11 Sub-pixel Rendering Overflow
On Internet Explorer 11, I have an issue with sub-pixel rendering causing an overflow of an element. As you can see, on IE11, the red part of the gauge seems to be 'peeking' out o
Solution 1:
Here's the best approach I think. We can avoidboth IE bugs by combining the gauge's 3 colors into a single div, then transforming the whole thing. demo (the needle is still separate). It's simpler markup than your original way too.
Solution 2:
I would recommend trying to set the line-height
to the same as the font-size
of the element, and make sure that both of these are integers and in pixels. Also try using pt
instead of using px
for font sizes to see if it helps.
Post a Comment for "Ie 11 Sub-pixel Rendering Overflow"