fontawesome 图标未显示,但为什么?

发布于 2025-01-10 03:06:08 字数 672 浏览 3 评论 0原文

为什么我的图标没有显示?

它看起来像这样:

它看起来像这样:

我已经添加了这个

      <script src="https://kit.fontawesome.com/bfb4213bb3.js" crossorigin="anonymous"></script>
      <link rel="stylesheet" href="https://necolas.github.io/normalize.css/8.0.1/normalize.css" type="text/css" />
      <!-- Load font awesome icons -->
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/5.12.1/css/all.min.css">
<i class="fa-solid fa-star"></i>

why are my icons not showing ?

its looks like this:

its looks like this:

I have added this

      <script src="https://kit.fontawesome.com/bfb4213bb3.js" crossorigin="anonymous"></script>
      <link rel="stylesheet" href="https://necolas.github.io/normalize.css/8.0.1/normalize.css" type="text/css" />
      <!-- Load font awesome icons -->
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/5.12.1/css/all.min.css">
<i class="fa-solid fa-star"></i>

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(2

清君侧 2025-01-17 03:06:08

您正在使用 fontawesome v6 图标类,而是将搜索中的版本更改为:
截图

正确的是:

you are using the fontawesome v6 icon classes instead change the version in search to:
screenshot

the correct one is :

<i class="fas fa-star"></i>

a√萤火虫的光℡ 2025-01-17 03:06:08

您所需要的只是 FontAwesome 的套件:

<script src="https://kit.fontawesome.com/bfb4213bb3.js" crossorigin="anonymous"></script>

您可以删除:

<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/5.12.1/css/all.min.css">

如果您的套件设置正确,您应该能够在此处看到“如何使用”页面:
https://fontawesome.com/kits/bfb4213bb3/use

All you need is your kit for FontAwesome:

<script src="https://kit.fontawesome.com/bfb4213bb3.js" crossorigin="anonymous"></script>

You can delete the:

<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/5.12.1/css/all.min.css">

If your kit is set up correctly, you should be able to see the "how to use" page here:
https://fontawesome.com/kits/bfb4213bb3/use

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文