Source code

Revision control

Copy as Markdown

Other Tools

<!doctype html>
<style>
body {
display: flex;
flex-wrap: wrap;
width: 200vw;
height: 200vh;
}
.container {
scrollbar-gutter: stable;
flex: 0 0;
overflow: auto;
height: 200px;
min-width: 200px;
margin: 1px;
padding: 0px;
border: none;
background: deepskyblue;
scrollbar-color: green green;
}
.content {
height: 300px;
width: 300px;
background: red;
}
</style>
<div class="container">
<div class="content"></div>
</div>