Why is text rendered with a greater font-size in Opera?

后端 未结 8 784
悲&欢浪女
悲&欢浪女 2021-01-17 22:19

I\'m working on an HTML page that needs to be more or less pixel-perfect, and I noticed that in Opera 10, fonts are rendering larger than they do in other browsers, even tho

8条回答
  •  时光说笑
    2021-01-17 22:40

    Came across similar issues, had to change my fallback order from:

    font-family: Helvetica, Verdana, Arial, sans-serif;
    

    to

    font-family: Helvetica, Arial, sans-serif;
    

    Since Arial and Helvetica are almost exactly the same size, when opera falls back it still looks good.

提交回复
热议问题