- 积分
- 2837
- 注册时间
- 2008-8-22
- 最后登录
- 1970-1-1
|
不知道什么时候开始,论坛电脑版的帖子正文字体似乎发生了变化。在Chrome 59里面看到在起作用的CSS rule是:
- https://bbs.yamibo.com/template/oyeeh_com_baihe/img/config/css/wp.css
复制代码
里面的:
- body, input, button, select, textarea {
- color: #6E2B19;
- font: 13px/1.6em Verdana,Helvetica,Arial,sans-serif;
- font-style: normal;
- font-variant-ligatures: normal;
- font-variant-caps: normal;
- font-variant-numeric: normal;
- font-weight: normal;
- font-stretch: normal;
- font-size: 13px;
- line-height: 1.6em;
- font-family: Verdana, Helvetica, Arial, sans-serif;
- /* font: 14px/1.5 Tahoma,"Microsoft Yahei","Simsun"; */
- }
复制代码
现在的font-family里面没有了中文字体,于是在非中文系统上就变成了日文字体优先,汉字看起来参差不齐。这边毕竟还是中文帖子居多,能否考虑改成:
- font-family: Verdana, Helvetica, Arial, "Microsoft Yahei","微软雅黑", "SimSun", STXihei, "华文细黑", sans-serif;
复制代码
|
|