mirror of
https://github.com/mozilla/gecko-dev.git
synced 2024-11-01 14:45:29 +00:00
38 lines
543 B
HTML
38 lines
543 B
HTML
|
<!DOCTYPE html>
|
||
|
<html>
|
||
|
<head>
|
||
|
<style type="text/css">
|
||
|
.separator {
|
||
|
height: 20px;
|
||
|
background-color: green;
|
||
|
}
|
||
|
.margin {
|
||
|
height: 20px;
|
||
|
}
|
||
|
#overflow {
|
||
|
height: 200px;
|
||
|
background-color: green;
|
||
|
overflow-y: auto;
|
||
|
}
|
||
|
#overflow div {
|
||
|
height: 40px;
|
||
|
}
|
||
|
#overflow .margin {
|
||
|
height: 160px;
|
||
|
background-color: blue;
|
||
|
}
|
||
|
</style>
|
||
|
</head>
|
||
|
<body>
|
||
|
<div class="separator"></div>
|
||
|
<div class="margin"></div>
|
||
|
<div id="overflow">
|
||
|
<div></div>
|
||
|
<div class="margin"></div>
|
||
|
<div></div>
|
||
|
</div>
|
||
|
<div class="margin"></div>
|
||
|
<div class="separator"></div>
|
||
|
</body>
|
||
|
</html>
|