blob: 708e9ec227ac4ec16c2b1cc356b6f196838e3c44 [file] [log] [blame]
<!DOCTYPE html>
<style>
body {
margin: 0;
}
.container {
position: absolute;
height: 1000px;
background-color: blue;
}
#child {
width: 600px;
}
.overflow {
width: 800px;
height: 50px;
}
</style>
<div class="container">
<div id="child">
<div class="overflow"></div>
</div>
</div>