IE 11 border-radius weirdness (did not occur in IE 9 and IE 10)

强颜欢笑 提交于 2019-11-28 06:47:57
Matt Smith

As far as I know there's a bug with border-radius in IE11. The issue you describe may be part of the bigger picture. More info.

The fractional pixel workaround can cause Firefox to skew text over by 1 pixel, due to their pixel-aligned workaround for cleartype blurriness in selective font sizes.

The overflow:hidden wrapper workaround in this msdn thread (where you posted) might be less prone to compatibility issues like that.

I think you are forgot anchor tag reset property in your css.

Actually IE Automatically taken 1px Border, You Must write reset property in your css img tag, a tag border:none

Like Below Code

img {border:none;outline:none}
a {border:none;outline:none}
易学教程内所有资源均来自网络或用户发布的内容,如有违反法律规定的内容欢迎反馈
该文章没有解决你所遇到的问题?点击提问,说说你的问题,让更多的人一起探讨吧!