LoginSignup
1
0

More than 1 year has passed since last update.

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

Last updated at Posted at 2022-03-17

症状

スマホなどの端末で見るとアイコンが小さくなる。
スクリーンショット (149).png

解決法

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キーのショートカットを使えば自動入力されるっぽい。

結果

スクリーンショット (150).png

1
0
1

Register as a new user and use Qiita more conveniently

  1. You get articles that match your needs
  2. You can efficiently read back useful information
  3. You can use dark theme
What you can do with signing up
1
0