gpt4 book ai didi

Bootstrap 上的 HTML 自定义字体不起作用

转载 作者:太空宇宙 更新时间:2023-11-04 13:52:35 26 4
gpt4 key购买 nike

所以我已经在这个问题上很长时间了,发布了一个问题但决定删除它,因为我已经在使用 bootstrap.. 现在是问题所在,当我尝试调试页面时,我的 main.css 和bootstrap.css 已加载但我的自定义字体没有..我现在迷路了为什么我的字体不会被加载..这是示例代码..

ma​​in.css

@font-face {
font-family: 'Arvo';
url("../fonts/custom/Arvo-Regular.woff") format("woff");
font-weight: normal;
font-style: normal;
}

用于 boostrap.css - 我已经在他们的网站上对其进行了自定义,以包含我的自定义字体 enter image description here

然后在我的 index.html 上

<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="utf-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<meta name="viewport" content="width=device-width, initial-scale=1">
<title>Bootstrap 101 Template</title>

<!-- Bootstrap -->
<link href="css/main.css" rel="stylesheet">
<link href="css/bootstrap.css" rel="stylesheet">

</head>
<body>
<h1>Hello, world!</h1>
</body>
</html>

然后对于我的 Chrome 调试器, enter image description here

我现在真的迷路了,因为它不会加载我的字体...而且我不知道如何,已经阅读了一些主题,但它们都指向我上面的修改不会加载我的字体

更新

enter image description here

enter image description here

enter image description here

最佳答案

您确定您有任何实际使用自定义字体的内容吗?从屏幕截图看来,您正在使用 sans serif 系列作为基本字体系列,并且该堆栈中的第一个字体是 Helvetica Neue。如果您在 Mac 或安装了 Helvetica Neue 的其他系统上进行测试,那么浏览器将永远不会尝试在您的堆栈中加载第二种字体(这是您的自定义字体)。

更新:

你的语法错误。您需要设置 src 属性:

@font-face {
font-family: 'Arvo';
src: url("../fonts/custom/Arvo-Regular.woff") format("woff");
font-weight: normal;
font-style: normal;
}

关于Bootstrap 上的 HTML 自定义字体不起作用,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/22122504/

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