font-face在Chrome上无效

时间:2013-10-13 12:03:22

标签: css css3 google-chrome font-face

我在我的网站上使用了font-face。它在除chrome之外的所有浏览器上都能正确显示。

我该怎么办?

CSS:

@font-face {
        font-family: "B Yekan";
        src: url('font/142272950-683a5dddcff7f1cbb08d964cc275cb50ce7840291901931.eot');
        src: url('font/142272950-683a5dddcff7f1cbb08d964cc275cb50ce7840291901931.eot?#iefix') format('embedded-opentype'),
        url('font/142272950-683a5dddcff7f1cbb08d964cc275cb50ce7840291901931.svg#B Yekan') format('svg'),
        url('font/142272950-683a5dddcff7f1cbb08d964cc275cb50ce7840291901931.woff') format('woff'),
        url('font/142272950-683a5dddcff7f1cbb08d964cc275cb50ce7840291901931.ttf') format('truetype');
        font-weight: normal;
        font-style: normal;
    }

body{
        font-family: "B Yekan","Open Sans";
        font-size: 13px;
        line-height: 21px;
        color: #626262;
    }

1 个答案:

答案 0 :(得分:0)

检查您是否可以从样式路径访问字体文件夹。字体文件夹是否在样式表文件的同一文件夹中?尝试绝对路径。 问候