How to antialias SVG text in Firefox

拈花ヽ惹草 提交于 2019-12-03 03:20:16

Firefox 25 will have support for the mox-osx-font-smoothing attribute!

So for firefox 25 you can use:

.yourclass{
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

Firefox 25 will probably be released somewhere at the end of Oktober was released on 2013-10-29.
Nightly builds can be found at http://nightly.mozilla.org/

Try "text-rendering" attribute.
text-rendering = "optimizeLegibility"

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