开发者

Google Fonts: How can I prevent Internet Explorer from rendering a bold font as regular?

开发者 https://www.devze.com 2023-02-06 07:20 出处:网络
Google Font开发者_运维问答s is great. But, I seem to have a problem with Internet Explorer. A font (say, Arvo) styled as bold won\'t render as bold in Internet Explorer. It does in all other browsers

Google Font开发者_运维问答s is great. But, I seem to have a problem with Internet Explorer. A font (say, Arvo) styled as bold won't render as bold in Internet Explorer. It does in all other browsers though.

Am I missing something?


How about making an IE specific stylesheet and in it declare something like

* { font-weight: regular; }

It's usually not advised to use the * selector, so try to narrow it down to wherever the font is used. For example, perhaps it's just paragraph text: p { font-weight: regular; }, or just links: a {...;} etc. etc.

Good luck!

0

精彩评论

暂无评论...
验证码 换一张
取 消