Source code

Revision control

Copy as Markdown

Other Tools

Test Info:

<!DOCTYPE html>
<html>
<head>
<link rel="match" href="abspos-shrink-to-fit-with-scrollable-descendant-ref.html">
<style>
.positioned {
position: relative;
height: 200px;
}
.container {
position: absolute;
background-color: green;
}
.parent {
height: 79px;
overflow: auto;
}
.content {
width: 10px;
height: 80px;
}
</style>
</head>
<body>
<div class=positioned>
<div class=container id="container">
<div class=parent id="parent">
<div class=content></div>
</div>
</div>
</div>
</body>
</html>