css 在Webkit-brower中快速修复渲染@ font-face

Posted

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了css 在Webkit-brower中快速修复渲染@ font-face相关的知识,希望对你有一定的参考价值。

/* Add this beside the typical @font-face declaration in CSS */
@media screen and (-webkit-min-device-pixel-ratio:0) {
  @font-face {
    font-family: 'HelveticaNeueBold';
    src: url('fonts/HelveticaNeueBold.svg') format('svg');
  }
}

/*The @media query targets webkit browsers and tells them to solely utilize the .SVG file. In my experience this improves rendering on Windows Chrome.*/

以上是关于css 在Webkit-brower中快速修复渲染@ font-face的主要内容,如果未能解决你的问题,请参考以下文章

CSS 修复IE中的滚动渲染错误

测试白屏怎么排查

Flutter 小技巧之玩转字体渲染和问题修复

IE haslayout的理解与bug修复

如何修复 HTML5 画布中的模糊文本?

使用CSS3的appearance属性改变元素的外观