Font Awesome 5图标无法在Bootstrap 4上运行

Hen*_*HBR 11 html css twitter-bootstrap font-awesome

我试图class="fas fa-github"在bootstrap dark按钮上添加github()图标,但是没有出现按钮图标和文本(控制台没有显示任何内容)

码:

<div class="jumbotron">
    <h1 class="display-4">Henrique Borges</h1>
    <p class="lead">Programador experiente e Web Designer.</p>
    <hr class="my-4">
    <p>It uses utility classes for typography and spacing to space content out within the larger container.</p>
    <p class="lead">
    <a class="fas fa-github btn btn-dark btn-lg" href="#" role="button">Github</a>
    </p>
</div>
Run Code Online (Sandbox Code Playgroud)

我已经包括了BS和FA库:

<link rel="stylesheet" href="css/bootstrap.min.css">
<script src="js/jquery-3.2.1.min.js"></script>
<script src="js/fontawesome-all.min.js"></script>
Run Code Online (Sandbox Code Playgroud)

Lak*_*ara 20

试试这个片段.改fas fa-githubfab fa-github.

<link rel="stylesheet" href="https://maxcdn.bootstrapcdn.com/bootstrap/4.0.0/css/bootstrap.min.css" integrity="sha384-Gn5384xqQ1aoWXA+058RXPxPg6fy4IWvTNh0E263XmFcJlSAwiGgFAW/dAiS6JXm" crossorigin="anonymous">
<link href="https://use.fontawesome.com/releases/v5.0.4/css/all.css" rel="stylesheet">



<div class="jumbotron">
  <h1 class="display-4">Henrique Borges</h1>
  <p class="lead">Programador experiente e Web Designer.</p>
  <hr class="my-4">
  <p>It uses utility classes for typography and spacing to space content out within the larger container.</p>
  <p class="lead">
    <i class="fab fa-github btn btn-dark btn-lg" href="#" role="button"> Github</i>
  </p>
</div>
Run Code Online (Sandbox Code Playgroud)

  • @ThomasJensen,据我所知,字体真棒有4种图标类型:1. fab-品牌,fas或fa-坚固,远-常规,fal-轻。因此,在他们的图标(例如github)的文档中,他们提供了前缀“ fab” https://fontawesome.com/icons/github?style=brands。 (3认同)

Has*_*tax 6

我以前遇到过这个问题,尤其是在fas上课时。对我来说,一直以来我一直在手动升级我的字体真棒样式表标签。

无论出于何种原因,像yarn那样的依赖项管理器都不会总是拥有最新版本的字体。

https://fontawesome.com/how-to-use/on-the-web/setup/getting-started?using=web-fonts-with-css

<!-- FontAwesome -->
  <link 
    rel="stylesheet"
    href="https://use.fontawesome.com/releases/v5.3.1/css/all.css"
    integrity="sha384-mzrmE5qonljUremFsqc01SB46JvROS7bZs3IO2EmfFsd15uHvIt+Y8vEf7N7fWAU" crossorigin="anonymous">
Run Code Online (Sandbox Code Playgroud)