怎么修改火狐中的字体出现框框错误
时间:2010-04-06 来源:原来我不帅哦
sudo vi /etc/fonts/conf.d/49-sansserif.conf
将文件里面的sans-serif字样改成你 系统的字库的字体
下面有色的部份,我的是sans,所以改成了sans
<?xml version="1.0"?>
<!DOCTYPE fontconfig SYSTEM "fonts.dtd">
<fontconfig>
<!--
If the font still has no generic name, add sans-serif
-->
<match target="pattern">
<test qual="all" name="family" compare="not_eq">
<string>sans</string>
</test>
<test qual="all" name="family" compare="not_eq">
<string>sans</string>
</test>
<test qual="all" name="family" compare="not_eq">
<string>monospace</string>
</test>
<edit name="family" mode="append_last">
<string>sans</string>
</edit>
</match>
</fontconfig>
注:转自http://forum.ubuntu.org.cn/viewtopic.php?f=8&p=1064957
将文件里面的sans-serif字样改成你 系统的字库的字体
下面有色的部份,我的是sans,所以改成了sans
<?xml version="1.0"?>
<!DOCTYPE fontconfig SYSTEM "fonts.dtd">
<fontconfig>
<!--
If the font still has no generic name, add sans-serif
-->
<match target="pattern">
<test qual="all" name="family" compare="not_eq">
<string>sans</string>
</test>
<test qual="all" name="family" compare="not_eq">
<string>sans</string>
</test>
<test qual="all" name="family" compare="not_eq">
<string>monospace</string>
</test>
<edit name="family" mode="append_last">
<string>sans</string>
</edit>
</match>
</fontconfig>
注:转自http://forum.ubuntu.org.cn/viewtopic.php?f=8&p=1064957
相关阅读 更多 +