我有一个问题,我希望用户强制使用网络字体而不是他计算机上安装的字体,因为它们的格式略有不同。我抬头看,!important
但我不确定,当我尝试它时,我不知道它是否正常工作。有人请在这里可以告诉我如何使用!important
吗@font-face
?它是否有效?
问问题
3517 次
1 回答
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>
于 2013-06-21T13:49:22.777 回答