全高の要素の作成方法

CSSを使用して要素を伸ばし、ブラウザウィンドウの全体の高さに適応させる方法を学びます。

全高のDiv

html, body {
  height: 100%;
}
.full-height {
  height: 100%;
}
<div class="full-height">..</div>

自分で試してみる