我font-face
在我的本地主机上使用 CSS3 属性,并在我的网站上托管了一个字体以加载到本地网页上。它可以在 IE 和 Chrome 上正常工作,但不能在 Firefox 上正常工作。奇怪的是,当我使用本地 URL 时,它也适用于 Firefox。
//Works with local URLs like http://localhost/repo/BMitra/BMitra.*
@font-face {
font-family: "BMitra";
src: url("http://fonts.gexek.com/repo/BMitra/BMitra.eot");
src: local("☺"),
url("http://fonts.gexek.com/repo/BMitra/BMitra.woff") format("woff"),
url("http://fonts.gexek.com/repo/BMitra/BMitra.ttf") format("truetype");
font-weight: normal;
font-style: normal;
}
我认为在本地主机上工作可能是问题,但我发现 Google 字体也在本地主机上正常工作。
你可以在你的 Firefox 和(Chrome 或 IE)浏览器上看到这个小提琴来演示我的意思。
http://jsfiddle.net/66QE3/1/
我错过了什么?