我在我的网站上发现了一个奇怪的问题 如果添加样式的字体,如
font: 2.0625em/1em 'ColiseumCRoman';
它在FF(28.0版本和29.0.1同样的问题)中不起作用 既不适用于尺寸,也不适用于行高和字体。标题以默认字体显示。
但如果我改变样式
font-size: 2.0625em;
line-height: 1em;
font-family: 'ColiseumCRoman';
它在FF中完全正确!
我不明白为什么!发生了什么事?
PS。我使用@font-face
添加此字体
@font-face { /*ColiseumC*/
font-family: 'ColiseumCRoman';
src: url('../fonts/coliseumc.eot');
src: url('../fonts/coliseumc.eot') format('embedded-opentype'),
url('../fonts/coliseumc.woff') format('woff'),
url('../fonts/coliseumc.ttf') format('truetype'),
url('../fonts/coliseumc.svg#ColiseumCRoman') format('svg');
font-weight: normal;
font-style: normal;
}