如何在CSS中导入字体? [英] How to import fonts in CSS?

查看:55
本文介绍了如何在CSS中导入字体?的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!

问题描述

我想使用某些字体,并且我希望它能在客户端计算机上没有该字体的情况下工作.我已经做到了,但是没用:

I want to use some fonts and I want it to work without having this font on the client computer. I have done this but it doesn't work:

@font-face {
    font-family: EntezareZohoor2;
    src: url(Entezar2.ttf) format("truetype");
}

.EntezarFont {
    font-family: EntezareZohoor2, B Nazanin, Tahoma !important;
}

推荐答案

以下行用于在CSS中定义字体

@font-face {
    font-family: 'EntezareZohoor2';
    src: url('fonts/EntezareZohoor2.eot'), url('fonts/EntezareZohoor2.ttf') format('truetype'), url('fonts/EntezareZohoor2.svg') format('svg');
    font-weight: normal;
    font-style: normal;
}

以下几行定义/使用css中的字体

#newfont{
    font-family:'EntezareZohoor2';
}

这篇关于如何在CSS中导入字体?的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持IT屋!

查看全文
登录 关闭
扫码关注1秒登录
发送“验证码”获取 | 15天全站免登陆