gpt4 book ai didi

css - 如何将 webfont 与 @font-face 一起使用

转载 作者:技术小花猫 更新时间:2023-10-29 11:09:09 24 4
gpt4 key购买 nike

我想将应用程序中的字体更改为自定义字体,但以下代码不起作用:

@font-face 
{
font-family: "ArnoProBold";
src: url("resources/fonts/ArnoProBold.ttf");
}
@font-face
{
font-family: "ArnoProCaption";
src: url("resources/fonts/ArnoProCaption.ttf");
}
@font-face
{
font-family: "Arn";
src: url("resources/fonts/ArnoProLightDisplay.ttf");
}

最佳答案

嘿@Ritesh,请尝试这样的事情,

@font-face {
font-family: 'ArnoProBold';
src: url('resources/fonts/your_file.eot');
src: url('resources/fonts/fonts?#iefix') format('embedded-opentype'),
url('resources/fonts/your_file.woff') format('woff'),
url('resources/fonts/your_file.ttf') format('truetype'),
url('resources/fonts/your_file.svg#ArnoProBold') format('svg');
font-weight: normal;
font-style: normal;
}

等等。

希望对您有所帮助。 :)

关于css - 如何将 webfont 与 @font-face 一起使用,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/11481964/

24 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com