为什么 IE9 以臃肿和模糊的方式呈现字体?
Why does IE9 render fonts in a bloated and blurry manner?
我遇到了 IE9 在臃肿模糊的庄园中呈现的问题。字体风格为Arial。它在ie9中的样子是这样的:
在其他浏览器中它看起来像这样:
我已经更改了 ie9 属性,但没有任何效果。我不认为这是一个 CSS 问题,我正在尽我所能尝试解决这个问题。任何输入将不胜感激。
较旧的 IE 无法正确呈现半粗体或许多数字 font-weight
尝试:
font-weight: normal;
//or if the font has bold type
font-weight: bold;
也尝试一些不同的字体
问题是 CSS 过滤器 属性:
filter: progid:DXImageTransform.Microsoft.Matrix(M11=1, M12=0, M21=0, M22=1, SizingMethod="auto expand");
解决方案:
filter:none;
我遇到了 IE9 在臃肿模糊的庄园中呈现的问题。字体风格为Arial。它在ie9中的样子是这样的:
在其他浏览器中它看起来像这样:
我已经更改了 ie9 属性,但没有任何效果。我不认为这是一个 CSS 问题,我正在尽我所能尝试解决这个问题。任何输入将不胜感激。
较旧的 IE 无法正确呈现半粗体或许多数字 font-weight
尝试:
font-weight: normal;
//or if the font has bold type
font-weight: bold;
也尝试一些不同的字体
问题是 CSS 过滤器 属性:
filter: progid:DXImageTransform.Microsoft.Matrix(M11=1, M12=0, M21=0, M22=1, SizingMethod="auto expand");
解决方案:
filter:none;