HTML

画像を画面の高さいっぱいに表示する

画像をブラウザの画面の高さいっぱいまで表示するには、 画像を表示する要素のheightプロパティで「100vh」と指定する。 HTML <div> <section class="conA"> <div class="container"> </div> </section> </div> CSS .conA { height: 100vh; background-image: url(/img/fruits.jpg); background-position: center; background-color: c…

metaタグあれこれ

HTMLの概要を指定する <meta name="description" content="HTML文書の概要文を記述します。"/> I#nternet Explorerの最新バージョンの標準モードを指定する <meta http-equiv="X-UA-Compatible" content="IE=edge"> ピンチ操作による拡大・縮小ができる指定 <meta name="viewport" content="width=device-width, initial-scale=1"/> ピンチ操作による拡大・縮小ができない指定 </meta></meta></meta>