XP use Chrome (also including FF, opera, IE and other support CSS definition style browser), for the beautiful want to force the page font display as Microsoft Black, but on some sites, some characters will not be displayed, such as: www.taobao.com,https:// Www.zybuluo.com/mdeditor, the reason is because these sites use "icon Font", and Microsoft ya Black can not be displayed. This question is estimated to have been met by many people. So, can the "Fish and Bear paw"? The answer is yes, change your custom style to the following code:
*:not ([class*= "icon"]): Not (i) {font-family: "Microsoft Yahei"!important;} {Text-shadow: silver 0px 0px 1px!important;}
The first line forces the non-icon font to appear as Microsoft Jas, and the icon font is displayed as is;
The second line is an enhancement that adds a shadow to the font of the Web page (only some browsers support this feature and require a certain amount of CPU and memory overhead).
The above measurements are effective.