1
這是我的CSS的開始CSS自定義字體不起作用
@charset "utf-8";
@font-face {
font-family: 'dax';
src: url('font/Dax.eot');
src: url('font/Dax.eot?#iefix') format('embedded-opentype'),
url('font/Dax.woff') format('woff'),
url('font/dax-regular.ttf') format('truetype'),
url('font/Dax.svg') format('svg');
font-weight: 300;
}
html, body {
font-family: "dax", Arial, serif;
....
這是我的字體文件,這是我的網站文件夾的層級 根包含: index.html,然後 字體和 ....
字體包含此:screen
試試'font-family:dax;'。 – Vucko
doasn't工作。它只是從宋體切換到新的羅馬文字 –
您的CSS文件與html文件位於同一文件夾中嗎? – Vucko