Source code

Revision control

Copy as Markdown

Other Tools

<!DOCTYPE html>
<html>
<head>
<style>
.container {
background-color: green;
width: max-content;
}
.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>