blob: 4cad918f1bf3a89cd02c0792d16ec560b586641f [file] [edit]
<!DOCTYPE html>
<html>
<head>
<style>
.container {
display: inline-block;
background-color: green;
}
.parent {
height: 79px;
overflow-y: scroll;
}
.content {
width: 10px;
height: 80px;
}
</style>
</head>
<body>
<div class=container>
<div class=parent>
<div class=content></div>
</div>
</div>
</body>
</html>