blob: 8ad257d9ceaf8737f0c74ad532b454fac17bde06 [file] [log] [blame] [edit]
<!DOCTYPE HTML>
<html>
<style>
::-webkit-scrollbar {
width: 0px;
}
.outer {
position: relative;
}
.middle {
overflow-y: auto;
height: 100px;
}
.inner {
position: relative;
height: 200px;
background: blue;
}
</style>
<body>
<div class="outer">
<div class="middle">
<div class="inner"></div>
</div>
</div>
</body>
</html>