blob: 319a35a5c5600c7bf9440f5fc8cb7c70a6b76dc9 [file] [edit]
<!DOCTYPE html>
<html>
<head>
<style>
.container {
float: left;
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>