【发布时间】:2013-01-07 00:32:51
【问题描述】:
我的font-face 无法在 Firefox 或 IE8 中运行。
文件在正确的运动中,这是我的 css 代码:
@font-face {
font-family: 'SnellRoundhand-Script';
src: url('snellroundhandscript.eot');
src: url('snellroundhandscript.eot?#iefix') format('embedded-opentype'),
url('snellroundhandscript.woff') format('woff'),
url('snellroundhandscript.ttf') format('truetype'),
url('snellroundhandscript.svg#snellroundhandscript') format('svg');
font-weight: normal;
font-style: normal;
}
文件会被破坏吗?还是我的 CSS 有问题?
我在那个代码下面也有这个代码:
@font-face {
font-family: 'Zapfino';
src: url('Zapfino.eot');
src: url('Zapfino.eot?#iefix') format('embedded-opentype'),
url('Zapfino.woff') format('woff'),
url('Zapfino.ttf') format('truetype'),
url('Zapfino.svg#Zapfino') format('svg');
font-weight: normal;
font-style: normal;
}
你可以在这里查看我的问题:http://hearingaidneeds.com/
【问题讨论】:
标签: css firefox internet-explorer-8 font-face