รหัสต่อไปนี้ใช้งานได้ใน Google Chrome เบต้าเช่นเดียวกับ IE 7 อย่างไรก็ตาม Firefox ดูเหมือนจะมีปัญหากับสิ่งนี้ ฉันสงสัยว่ามันจะเป็นปัญหาของไฟล์ CSS ของฉันรวมอยู่ด้วยทำให้ฉันรู้ว่า Firefox ไม่เป็นมิตรกับการนำเข้าข้ามโดเมน
แต่ทั้งหมดนี้เป็นเพียง HTML คงที่และไม่มีคำถามเกี่ยวกับข้ามโดเมน
บนหน้า Landing Page ของฉันฉันจะนำเข้า 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 ไดเรกทอรีฟอนต์นี้มีไฟล์ woff / ttf / svg ทั้งหมดเป็นต้น
ฉันนิ่งงันกับสิ่งนี้ มันทำงานได้ใน Chrome และ IE แต่ไม่ได้อยู่ใน Firefox เป็นไปได้อย่างไร? ฉันพลาดอะไรไป
<style>
แท็กและดูว่าคุณมีปัญหาเดียวกันหรือไม่