2009-04-25 12:50:57 +04:00
|
|
|
<!DOCTYPE html>
|
|
|
|
<html>
|
|
|
|
<head>
|
|
|
|
<style type="text/css">
|
2013-10-16 04:37:03 +04:00
|
|
|
#separator-top {
|
2009-04-25 12:50:57 +04:00
|
|
|
height: 20px;
|
|
|
|
margin-bottom: 20px;
|
2013-10-16 04:37:03 +04:00
|
|
|
background-color: green;
|
2009-04-25 12:50:57 +04:00
|
|
|
}
|
2013-10-16 04:37:03 +04:00
|
|
|
#overflow {
|
2009-04-25 12:50:57 +04:00
|
|
|
background-color: green;
|
|
|
|
height: 40px;
|
|
|
|
}
|
2013-10-16 04:37:03 +04:00
|
|
|
#separator-bottom {
|
2009-04-25 12:50:57 +04:00
|
|
|
height: 20px;
|
|
|
|
margin-top: 20px;
|
2013-10-16 04:37:03 +04:00
|
|
|
background-color: green;
|
2009-04-25 12:50:57 +04:00
|
|
|
}
|
|
|
|
</style>
|
|
|
|
</head>
|
|
|
|
<body>
|
2013-10-16 04:37:03 +04:00
|
|
|
<div id="separator-top"></div>
|
|
|
|
<div id="overflow"></div>
|
|
|
|
<div id="separator-bottom"></div>
|
2009-04-25 12:50:57 +04:00
|
|
|
</body>
|
|
|
|
</html>
|