зеркало из https://github.com/mozilla/gecko-dev.git
26 строки
372 B
HTML
26 строки
372 B
HTML
<!DOCTYPE html>
|
|
<html>
|
|
<head>
|
|
<style type="text/css">
|
|
.separator {
|
|
height: 20px;
|
|
background-color: blue;
|
|
}
|
|
.spacer {
|
|
height: 40px;
|
|
}
|
|
#overflow {
|
|
height: 200px;
|
|
background-color: green;
|
|
}
|
|
</style>
|
|
</head>
|
|
<body>
|
|
<div class="separator"></div>
|
|
<div class="spacer"></div>
|
|
<div id="overflow"></div>
|
|
<div class="spacer"></div>
|
|
<div class="separator"></div>
|
|
</body>
|
|
</html>
|