4
절대 위치 + 스크롤링
다음 HTML과 함께CSS .container { position: relative; border: solid 1px red; height: 256px; width: 256px; overflow: auto; } .full-height { position: absolute; top: 0; left: 0; right: 128px; bottom: 0; background: blue; } <div class="container"> <div class="full-height"> </div> </div> 코드 조각 실행결과 숨기기스 니펫 확장 내부 div는 원하는대로 컨테이너의 전체 …