BootstrapでGlyphiconsを使用したアイコン付きボタンを作りたいのですが、アイコンが表示されません。
Bootstrapの公式サイトからクラス名をコピーしているため、誤字ではないと思います。
HTML
1<!doctype html> 2<html lang="ja"> 3 <head> 4 <!-- Required meta tags --> 5 <meta charset="utf-8"> 6 <meta name="viewport" content="width=device-width, initial-scale=1, shrink-to-fit=no"> 7 <!-- Bootstrap CSS --> 8 <link rel="stylesheet" href="https://stackpath.bootstrapcdn.com/bootstrap/4.5.2/css/bootstrap.min.css" integrity="sha384-JcKb8q3iqJ61gNV9KGb8thSsNjpSL0n8PARn9HuZOnIxN0hoP+VmmDGMN5t9UJ0Z" crossorigin="anonymous"> 9 <title></title> 10 </head> 11 <body> 12 <div class="container mt-4"> 13 <button class="btn btn-primary"> 14 <span class="glyphicon glyphicon-download-alt" aria-hidden="true"></span>Download 15 </button> 16 </div> 17 <!-- Optional JavaScript --> 18 <!-- jQuery first, then Popper.js, then Bootstrap JS --> 19 <script src="https://code.jquery.com/jquery-3.5.1.slim.min.js" integrity="sha384-DfXdz2htPH0lsSSs5nCTpuj/zy4C+OGpamoFVy38MVBnE+IbbVYUew+OrCXaRkfj" crossorigin="anonymous"></script> 20 <script src="https://cdn.jsdelivr.net/npm/popper.js@1.16.1/dist/umd/popper.min.js" integrity="sha384-9/reFTGAW83EW2RDu2S0VKaIzap3H66lZH81PoYlFhbGU+6BZp6G7niu735Sk7lN" crossorigin="anonymous"></script> 21 <script src="https://stackpath.bootstrapcdn.com/bootstrap/4.5.2/js/bootstrap.min.js" integrity="sha384-B4gt1jrGC7Jh4AgTPSdUtOBvfO8shuf57BaghqFfPlYxofvL8/KUEfYiJOMMV+rV" crossorigin="anonymous"></script> 22 23 </body> 24</html>
プレビューすると以下のようになりアイコンが表示されません。
要素の検証を行っても特にエラーは出ていないようです。
(Google chrome上でプレビューしています。)
このようになってしまう原因がわかる方がいれば教えて下さい!!
回答1件
あなたの回答
tips
プレビュー
バッドをするには、ログインかつ
こちらの条件を満たす必要があります。
2020/11/23 11:49