#browser
div {
overflow:auto; width:100vw; height:100vh;
}
div {
position: absolute;
top:0; bottom:0;
left:0; right:0;
overflow: auto;
padding: 10px;
}
html,body {
overflow:hidden; width:100%; height:100%;
}
div {
overflow:auto; width:100%; height:100%;
}
html, body {
height: 100%;
width: 100%; // 폭은 설정을 안해도 된다.
padding: 0; margin: 0;
overflow: hidden;
}
.parent {
width: 100%;
height: 100%;
overflow: auto;
}
.child {
width: fit-content;
height: fit-content;
min-width: 100%;
min-height: 100%;
}
※ 자식요소가 부모의 contents area 역할로 자식요소내 요소는 자속요소에 의존한다.
■ parent,child 둘다 padding,border는 가능하나 margin은 안됨 (margin 있으면 항상 스크롤생김)