網址是http://arethebaronsplaying.com/字體將不會呈現在IE
如果有人能解決這個問題對我來說,我會提供一些值得他們認真......。
我無法讓我的字體在我的Rails應用程序中在IE 10或11中呈現。我在IE中收到以下錯誤:
"CSS3114: @font-face failed OpenType embedding permission check. Permission must be Installable."
我不在乎10點以前。我已經嘗試了所有人已經提出的建議。
我用的字體松鼠字體生成,我添加了一個'的.htaccess'文件到我的根與它內部的以下內容:
Header set Access-Control-Allow-Origin "*"
我已經添加了元標記來<head>
<meta http-equiv="X-UA-Compatible" content="IE=10">
我被卡住了。這是我的CSS:
@font-face {
font-family: 'hamilton20';
src: asset_url('fonts/hamilton_wood_type_foundry_-_hwtunitgothic-720-webfont.eot');
src: asset_url('fonts/hamilton_wood_type_foundry_-_hwtunitgothic-720-webfont.eot?#iefix') format('embedded-opentype'),
asset_url('fonts/hamilton_wood_type_foundry_-_hwtunitgothic-720-webfont.woff') format('woff'),
asset_url('fonts/hamilton_wood_type_foundry_-_hwtunitgothic-720-webfont.ttf') format('truetype'),
asset_url('fonts/hamilton_wood_type_foundry_-_hwtunitgothic-720-webfont.svg#MonoSocialIconsFont') format('svg');
src: asset_url('fonts/hamilton_wood_type_foundry_-_hwtunitgothic-720-webfont.ttf') format('truetype');
font-weight: normal;
font-style: normal;
}
蘇格蘭威士忌,有人嗎?
我想你可能需要將字體移動到CSS所在的同一個文件夾中。我必須在我正在處理的網站上做到這一點。 – Howli
您是否獲得了嵌入字體的正確許可? – Alohci
@howlin'字體'目錄位於存儲CSS的stylesheets目錄中。 – reknirt