0

我不能让@font-face 在 IE 上工作。我尝试了很多建议的方法,但似乎没有任何效果。

  • 我在这里生成了我的字体:fontsquirrel
  • 我为这个网站添加了 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;
}

我被卡住了,任何想法都会受到赞赏。

4

1 回答 1

1

你应该单引号你是参考:

.btn_submit{
    font-family: 'fbahava_regularregular' ,Arial; 
}
于 2013-02-07T10:29:51.577 回答