字体数大于字母

时间:2013-11-25 20:23:56

标签: html css fonts

我正在处理车牌预览脚本

一切都很顺利,除了在这个自定义字体中,数字大于字母,尽管它们声明了相同的font-size

这是截图:

enter image description here

字体为:http://www.dafont.com/mandatory.font

我使用字体squirrel生成器来获取文件和css。

继承人css:

body {
    margin: 0px 0px;
    background: #3AB54B;
    color: #000000;
    font-family: 'mandatoryregular';
    text-align: center;
    font-size: 150px;
}

@font-face {
    font-family: 'mandatoryregular';
    src: url('fonts/mandator-webfont.eot');
    src: url('fonts/mandator-webfont.eot?#iefix') format('embedded-opentype'),
         url('fonts/mandator-webfont.woff') format('woff'),
         url('fonts/mandator-webfont.ttf') format('truetype'),
         url('fonts/mandator-webfont.svg#mandatoryregular') format('svg');
    font-weight: normal;
    font-style: normal;
}

我的问题是,我该如何解决这个问题?即时通讯也使用PHP。我到目前为止唯一想到的方法是使用php来浏览每个字符,如果是数字,请在字符周围添加span,然后在css中声明不同的字体大小。

但是有更好/更简单的方法吗?

0 个答案:

没有答案