blob: 3fddc2dd445730b656b67ae7ee11a9e34e46bfd5 [file] [edit]
<!DOCTYPE html>
<html>
<head>
<style>
body, html {
margin: 0;
width: 100%;
height: 100%;
}
.wide, .tall {
position: absolute;
top: 50px;
left: 150px;
}
.wide {
width: 800px;
height: 50px;
background: orange;
}
.tall {
width: 50px;
height: 600px;
background: plum;
}
body::-webkit-scrollbar {
display: none;
}
</style>
<script>
window.internals?.setUsesOverlayScrollbars(true);
</script>
</head>
<body>
<div class="wide"></div>
<div class="tall"></div>
</body>
</html>