develog

[css] div height 100% 본문

카테고리 없음

[css] div height 100%

냐옴 2021. 4. 24. 15:39
html, body {
  height: 100%;
  overflow: hidden;
  margin: 0px;
}
.box {
  /* border: 2px green solid; */
}
.container {
  height: 100%;
  background-color: lightpink;
}
<div class="box container">
  class="box container"
</div>

Comments