Bootstrapをモバイル端末で見たとき小さくなる時の対処法


症状

スマホなどの端末で見るとアイコンが小さくなる。

解決法

before

<head>
    <meta charset="UTF-8">
    <title>〇〇〇</title>
    <link rel="stylesheet" href="/resources/css/bootstrap.css">
    <script src="/resources/js/bootstrap.js"></script>
  </head>

after

<head>
    <meta charset="UTF-8">
  <!-- 追記 -->
    <meta http-equiv="X-UA-Compatible" content="IE=edge">
    <meta name="viewport" content="width=device-width, initial-scale=1.0">
  <!-- 終わり -->
    <title>〇〇〇</title>
    <link rel="stylesheet" href="/resources/css/bootstrap.css">
    <script src="/resources/js/bootstrap.js"></script>
  </head>

VScodeで「!」打ってからのEnterキーのショートカットを使えば自動入力されるっぽい。

結果