以下代码适用于Google Chrome Beta和IE 7。但是,Firefox似乎在这方面存在问题。我怀疑这是我的CSS文件如何包含的问题,因为我知道Firefox对跨域导入不太友好。
但这只是静态HTML,不存在跨域问题。
在我的landing-page.HTML上,我做了一个CSS导入,如下所示:
<link rel="stylesheet" href="../css/main.css" type="text/css" media="screen, projection" />
在main.CSS中,我有另一个类似这样的导入:
@import url("reset.css");
@import url("style.css");
@import url("type.css");
在type.CSS中,我有以下声明:
@font-face {
font-family: "DroidSerif Regular";
src: url("font/droidserif-regular-webfont.eot");
src: local("DroidSerif Regular"),
url("font/droidserif-regular-webfont.woff") format("woff"),
url("font/droidserif-regular-webfont.ttf") format("truetype"),
url("font/droidserif-regular-webfont.svg#webfontpB9xBi8Q") format("svg");
font-weight: normal; font-style: normal; }
@font-face {
font-family: "DroidSerif Bold";
src: url("font/droidserif-bold-webfont.eot");
src: local("DroidSerif Bold"),
url("font/droidserif-bold-webfont.woff") format("woff"),
url("font/droidserif-bold-webfont.ttf") format("truetype"),
url("font/droidserif-bold-webfont.svg#webfontpB9xBi8Q") format("svg");
font-weight: normal; font-style: normal; }
body { font-family: "DroidSerif Regular", serif; }
h1 { font-weight: bold; font-family: "DroidSerif Bold", serif; }
我有一个名为“ font ”的目录,与type.CSS的位置相同。这个font目录包含所有的WOFF/TTF/SVG文件等。
我被这个问题难住了。__ABC 0。这怎么可能?我错过了什么?