在@ font-face上放置!重要是有效的吗?

时间:2013-06-21 13:31:52

标签: css font-face

我有一个问题,我希望用户强制使用网络字体而不是他的计算机上安装的字体,因为它们的格式略有不同。我查了!important,但我不确定,当我尝试它时,我没有得到它的工作与否。任何人请在!important告诉我如何使用@font-face?是否有效?

1 个答案:

答案 0 :(得分:1)

这样的事情:

<强> CSS

@font-face {
    font-family: 'custom-font';
    src: url('custom-font.eot');
    src: url('custom-font.eot?#iefix') format('embedded-opentype'),
         url('custom-font.woff') format('woff'),
         url('custom-font.ttf') format('truetype'),
         url('custom-font.svg#custom') format('svg');
    font-weight: normal;
    font-style: normal;

}



p { font-family: 'custom-font', Arial, sans-serif;  }

<强> HTML

<p>Your text here</p>