简体   繁体   中英

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

Google Fonts 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; } p { font-weight: regular; } , or just links: a {...;} etc. etc.

Good luck!

The technical post webpages of this site follow the CC BY-SA 4.0 protocol. If you need to reprint, please indicate the site URL or the original address.Any question please contact:yoyou2525@163.com.

 
粤ICP备18138465号  © 2020-2024 STACKOOM.COM