0

在 html5 中,我使用了自定义字体(Universe 55 字体)。我下载了 .ttf 文件,与@font-face 规则一起使用,并在 IE、Chrome、移动浏览器中进行了检查。它不起作用,但在网站上他们说浏览器将支持这种字体类型。我需要为字体使用任何其他文件格式吗?

我使用@font-face 规则作为,

@font-face
{ font-family: 'Universe2';
src: url("C:\Users\..\Desktop\Fonts\Univers LT 55 Roman.ttf"); }
.custfont
{ font-family: 'Universe2';
font-size:25px; }
<body><div class='custfont'>This is a customized font</div></body>
4

2 回答 2

2

你必须通过项目链接它,例如你的项目在 d:/projectname 里面你有字体文件你在 CSS 中像这样链接它:

@font-face {
    font-family: 'MyFont';
    src: url('myfont.eot'); /* IE9 Compat Modes */
    src: url('myfont.eot?#iefix') format('embedded-opentype'), /* IE6-IE8 */
         url('myfont.woff') format('woff'), /* Modern Browsers */
         url('myfont.ttf')  format('truetype'), /* Safari, Android, iOS */
         url('myfont.svg#svgFontName') format('svg'); /* Legacy iOS */
    }
于 2013-07-17T09:28:36.693 回答
0

在您的项目中添加 Univers LT 55 Roman.ttf...

于 2013-07-17T09:14:18.627 回答