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