2009-04-25 01:50:57 -07:00
|
|
|
<!DOCTYPE html>
|
|
|
|
<html>
|
|
|
|
<head>
|
|
|
|
<style type="text/css">
|
2013-10-15 17:37:03 -07:00
|
|
|
.separator {
|
2009-04-25 01:50:57 -07:00
|
|
|
height: 20px;
|
2013-10-15 17:37:03 -07:00
|
|
|
background-color: blue;
|
2009-04-25 01:50:57 -07:00
|
|
|
}
|
2013-10-15 17:37:03 -07:00
|
|
|
#overflow {
|
2009-04-25 01:50:57 -07:00
|
|
|
overflow: auto;
|
2013-10-15 17:37:03 -07:00
|
|
|
height: 200px;
|
|
|
|
margin: 20px 0;
|
|
|
|
background-color: lightgreen;
|
2009-04-25 01:50:57 -07:00
|
|
|
}
|
2013-10-15 17:37:03 -07:00
|
|
|
#child {
|
2009-04-25 01:50:57 -07:00
|
|
|
height: 160px;
|
2013-10-15 17:37:03 -07:00
|
|
|
margin: 40px 0;
|
|
|
|
background-color: green;
|
2009-04-25 01:50:57 -07:00
|
|
|
}
|
|
|
|
</style>
|
|
|
|
</head>
|
|
|
|
<body>
|
2013-10-15 17:37:03 -07:00
|
|
|
<div class="separator"></div>
|
|
|
|
<div id="overflow">
|
|
|
|
<div id="child"></div>
|
2009-04-25 01:50:57 -07:00
|
|
|
</div>
|
2013-10-15 17:37:03 -07:00
|
|
|
<div class="separator"></div>
|
2009-04-25 01:50:57 -07:00
|
|
|
</body>
|
|
|
|
</html>
|