@font-face を IE で動作させることができません。提案された多くの方法を試してみましたが、何もうまくいかないようです。
- ここでフォントを生成しました:fontsquirrel
- この Web サイトに MIME タイプ '.woff' を追加しました。
CSS:
@font-face {
font-family: 'fbahava_regularregular';
src: url('http://2send.co.il/Content/Fonts/fbahava-regular-webfont.eot');
src: url('http://2send.co.il/Content/Fonts/fbahava-regular-webfont.eot?#iefix') format('embedded-opentype'),
url('http://2send.co.il/Content/Fonts/fbahava-regular-webfont.woff') format('woff'),
url('http://2send.co.il/Content/Fonts/fbahava-regular-webfont.ttf') format('truetype'),
url('http://2send.co.il/Content/Fonts/fbahava-regular-webfont.svg#fbahava_regularregular') format('svg');
font-weight: normal;
font-style: normal;
}
.btn_submit {
font-family: 'fbahava_regularregular' ,Arial;
height: 56px;
padding: 0px 35px;
background-image: url('../images/btn_pix.png');
border: 0 solid white;
font-size: 48px;
border-radius: 5px;
-moz-border-radius: 5px;
-webkit-border-radius: 5px;
box-shadow: 0 1px 0 #BE331B inset, 1px 0 0 #A42A15 inset, -1px 0 0 #A42A15 inset, 0 -1px 0 #8C200E inset, 0 2px 0 rgba(255, 255, 255, 0.3) inset, 0 0 4px rgba(255, 255, 255, 0.3) inset, 0 1px 2px rgba(0, 0, 0, 0.3);
-webkit-box-shadow: 0 1px 0 #BE331B inset, 1px 0 0 #A42A15 inset, -1px 0 0 #A42A15 inset, 0 -1px 0 #8C200E inset, 0 2px 0 rgba(255, 255, 255, 0.3) inset, 0 0 4px rgba(255, 255, 255, 0.3) inset, 0 1px 2px rgba(0, 0, 0, 0.3);
-moz-box-shadow: 0 1px 0 #BE331B inset, 1px 0 0 #A42A15 inset, -1px 0 0 #A42A15 inset, 0 -1px 0 #8C200E inset, 0 2px 0 rgba(255, 255, 255, 0.3) inset, 0 0 4px rgba(255, 255, 255, 0.3) inset, 0 1px 2px rgba(0, 0, 0, 0.3);
cursor: pointer;
}
私は立ち往生しています、どんなアイデアでも大歓迎です。