[问题]英文字体显示不正常 (已解决)
-
- 帖子: 74
- 注册时间: 2006-08-30 16:50
- 来自: 四川
[问题]英文字体显示不正常 (已解决)
某些网页下英文和数字显示不正常.但是有些有正常的,无论怎么在字体里面改都不行
解决:在ff中 首选项里面的字体高级选项里面不把那个 允许网页使用自己的字体的钩钩去掉就解决了 - -
解决:在ff中 首选项里面的字体高级选项里面不把那个 允许网页使用自己的字体的钩钩去掉就解决了 - -
上次由 mosoplyr 在 2007-06-10 22:18,总共编辑 1 次。
- BigSnake.NET
- 帖子: 12522
- 注册时间: 2006-07-02 11:16
- 来自: 廣州
- 联系:
- nihui
- 帖子: 1746
- 注册时间: 2006-10-21 12:03
- 来自: Shanghai
- 联系:
-
- 帖子: 74
- 注册时间: 2006-08-30 16:50
- 来自: 四川
-
- 帖子: 74
- 注册时间: 2006-08-30 16:50
- 来自: 四川
- xtayfool
- 帖子: 218
- 注册时间: 2005-09-17 10:16
解决英文网页字体难看的问题,我的新办法,在书上找到的
把下面代码加入$HOME/.fonts.conf中
我把Times等字体映射到Liberation,若你的机器上没安装liberation可以替换成Bitstream Vera
把下面代码加入$HOME/.fonts.conf中
代码: 全选
<match target="pattern">
<test name="family">
<string>Times</string>
</test>
<edit name="family" mod="append" binding="same">
<string>Liberation Serif</string>
</edit>
</match>
<match target="pattern">
<test name="family">
<string>Helvetica</string>
</test>
<edit name="family" mod="append" binding="same">
<string>Liberation Sans</string>
</edit>
</match>
<match target="pattern">
<test name="family">
<string>Courier</string>
</test>
<edit name="family" mod="append" binding="same">
<string>Liberation Mono</string>
</edit>
</match>