blob: 91d07c59811f29c0b80fc8be2ca13ad5214d58a0 [file] [log] [blame]
<!DOCTYPE html>
<html>
<head>
<style type="text/css">
.box {
width: 10px;
height: 10px;
}
.scrollable {
overflow: scroll;
}
.out-of-flow {
position: absolute;
}
.big {
margin: 200px;
}
</style>
</head>
<body>
<div class="scrollable box">
<span class="big">Scrolling content</span>
<div class="out-of-flow box">Out-of-flow content.</div>
</div>
</body>
</html>