mirror of
https://github.com/mozilla/gecko-dev.git
synced 2024-11-02 07:05:24 +00:00
26 lines
377 B
HTML
26 lines
377 B
HTML
<!DOCTYPE html>
|
|
<html>
|
|
<head>
|
|
<style type="text/css">
|
|
#overflow, .separator {
|
|
height: 20px;
|
|
background-color: green;
|
|
}
|
|
.margin {
|
|
height: 20px;
|
|
}
|
|
#overflow {
|
|
height: 40px;
|
|
overflow: visible;
|
|
}
|
|
</style>
|
|
</head>
|
|
<body>
|
|
<div class="separator"></div>
|
|
<div class="margin"></div>
|
|
<div id="overflow"></div>
|
|
<div class="margin"></div>
|
|
<div class="separator"></div>
|
|
</body>
|
|
</html>
|