我正在尝试使用一种名为BebasNeue Regular的自定义字体,我打算将我的网站设置为在线,这样它不仅应该在本地PC上可见。我使用以下CSS导入字体:

@font-face {
    font-family:BebasNeue Regular;
    src:url("BebasNeue Regular.ttf");
}

    .text h1 {
        margin:auto;
        text-align:center;
        font-size:15vw;
        text-transform:uppercase;
        font-family:BebasNeue Regular;
    }


该字体对其他人可见吗?

最佳答案

@Tommy O关于“后备”系统是正确的。如果只有ttf版本,则应使用Online Font Converter创建具有所需格式的字体文件。最终产品还将为您提供一个示例CSS文件,向您展示如何正确应用它们。在您的情况下,它看起来像这样:

@font-face {
    font-family:'BebasNeue Regular';
    src: url('BebasNeue Regular.eot');
    src: url('BebasNeue Regular.woff') format('woff'),
       url('BebasNeue Regular.ttf') format('truetype'),
       url('BebasNeue Regular.eot?#iefix') format('embedded-opentype');
}

关于css - 该字体对所有人都可见吗?,我们在Stack Overflow上找到一个类似的问题:https://stackoverflow.com/questions/46852577/

10-15 15:10