전체 높이의 요소를 어떻게 만드는가:

CSS를 사용하여 요소를 확장하여 브라우저 창 전체 높이에 맞추는 방법을 배웁니다.

전체 높이의 Div

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

직접 시도해 보세요