1

遇到一个奇怪的问题。我在标题的第一部分使用因子字体,在标题的第二部分使用另一种字体。我上传了 .ttf 文件并在 css 中链接到它们。它出现在我的 mac(chrome、safari、mobile)上,但不在其他人的计算机上(chrome、mozilla,甚至是 mobile)。我不知道问题可能是什么。这就是它应该看起来的样子:应该如何 这就是它出错时的样子。 它如何在其他时间出现

就像我说的,它被上传到服务器就好了,因为我为“生活博客”使用了某种字体,以便正确加载和使用字体。可能是什么问题呢???是这个字体吗?这是我的CSS代码:

@font-face{
font-family: "Factor";
src: url("..//fonts/factor.ttf");
}
@font-face{
font-family: "Mamma Gamma";
src: url("..//fonts/MammaGamma.ttf");
}
#title h1{
font-family: "Factor";
font-size: 46px;
margin-bottom: -30px;
}
#title h2{
font-family: "Mamma Gamma";
font-size: 80px;
margin-bottom: -25px;
}

这是 html ......一切都很简单:

<div id="title">
    <h1>Elena Ikovleva</h1>
    <h2>Life Blog</h2>
</div>
4

0 回答 0