IE11 blurry right hand edge of DIV with border-radius

时光总嘲笑我的痴心妄想 提交于 2019-12-02 00:36:50
Gabe

Without a properly specified border, IE11 blurs the right edge/border of the element. You can update your CSS to include border: 1px solid #rrggbb; or border: 0; per eh1160's comment below.

Important Note: vertically or horizontally centering a DIV inside a container with odd-numbered height/widths will create a fuzzy edge even with border: 0; (see: http://codepen.io/anon/pen/xbvXNa) so in a flexible layout where dimensions are not guaranteed, best practice is to apply border: 1px solid #rrggbb;"

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