有人可以帮我解决为什么我的@ font-face规则无法跨浏览器工作吗?它在Safari和Chrome中运行良好。
我使用http://www.fontsquirrel.com生成webfonts,css如下:
@font-face {
font-family: 'alien';
src: url('fonts/alienleague-webfont.eot');
src: url('fonts/alienleague-webfont.eot?#iefix') format('embedded-opentype'),
url('fonts/alienleague-webfont.woff') format('woff'),
url('fonts/alienleague-webfont.ttf') format('truetype'),
url('fonts/alienleague-webfont.svg#alien_leagueregular') format('svg');
font-weight: normal;
font-style: normal;
}
相关网站为http://www.trevorfriedrich.com
提前致谢!
和Rachael