@font-face ( fontsquirrel.comで生成) を介して、自分のサイトにフォント Aller Regular と Aller bold をインストールしました。
CSSは次のとおりです。
@font-face {
font-family: 'AllerRegular';
src: url('library/fonts/aller_rg-webfont.eot');
src: url('library/fonts/aller_rg-webfont.eot?#iefix') format('embedded-opentype'),
url('library/fonts/aller_rg-webfont.woff') format('woff'),
url('library/fonts/aller_rg-webfont.ttf') format('truetype'),
url('library/fonts/aller_rg-webfont.svg#AllerRegular') format('svg');
font-weight: normal;
font-style: normal;
}
@font-face {
font-family: 'AllerBold';
src: url('aller_bd-webfont.eot');
src: url('library/fonts/aller_bd-webfont.eot?#iefix') format('embedded-opentype'),
url('library/fonts/aller_bd-webfont.woff') format('woff'),
url('library/fonts/aller_bd-webfont.ttf') format('truetype'),
url('library/fonts/aller_bd-webfont.svg#AllerBold') format('svg');
font-weight: normal;
font-style: normal;
}
これは、Firefox で他のフォントを使用している場合は正常に機能していますが、IE8 を使用している場合、Web ページがクラッシュし、再度開こうとして再びクラッシュします。実際の例はhttp://rcnhca.org.uk/sites/first_steps/にあります。
この狂気の原因を知っている人はいますか?