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キーのショートカットを使えば自動入力されるっぽい。
結果
Author And Source
この問題について(Bootstrapをモバイル端末で見たとき小さくなる時の対処法), 我々は、より多くの情報をここで見つけました https://qiita.com/Lian/items/69e69d6e6976e5c03101著者帰属:元の著者の情報は、元のURLに含まれています。著作権は原作者に属する。
Content is automatically searched and collected through network algorithms . If there is a violation . Please contact us . We will adjust (correct author information ,or delete content ) as soon as possible .