字体(智慧脚本)渲染问题

时间:2014-07-01 11:32:18

标签: css font-face

项目链接:

http://50.87.144.37/~projtest/team/design/AHG/brochure/1/demo.html

CSS:

@font-face {
    font-family: 'Conv_Wisdom Script AJ';
    src: url('fonts/Wisdom Script AJ.eot');
    src: local('☺'), 
         url('fonts/Wisdom Script AJ.svg') format('svg'), 
         url('fonts/Wisdom Script AJ.ttf') format('truetype'), 
         url('fonts/Wisdom Script AJ.woff') format('woff');
    font-weight: normal;
    font-style: normal;
}

字体名称是“Wisdom Script”。下降器正在削减。我已经尝试了所有的解决方案,我似乎无法在这里弄清楚这个问题。

以下是字体的显示方式:

enter image description here

1 个答案:

答案 0 :(得分:0)

试试这个

font-family: 'LatoRegular';
    src: url('../fonts/Lato-Reg-webfont.eot');
    src: url('../fonts/Lato-Reg-webfont.eot?#iefix') format('embedded-opentype'),
         url('../fonts/Lato-Reg-webfont.woff') format('woff'),
         url('../fonts/Lato-Reg-webfont.ttf') format('truetype'),
         url('../fonts/Lato-Reg-webfont.svg') format('svg');
    font-weight: normal;
    font-style: normal;
相关问题