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 {
|
2009-04-25 12:50:57 +04:00
|
|
|
height: 20px;
|
|
|
|
background-color: green;
|
|
|
|
}
|
2013-10-16 04:37:03 +04:00
|
|
|
#float {
|
2009-04-25 12:50:57 +04:00
|
|
|
float: left;
|
|
|
|
width: 50px;
|
2013-10-16 04:37:03 +04:00
|
|
|
margin: 20px 0;
|
|
|
|
background-color: green;
|
2009-04-25 12:50:57 +04:00
|
|
|
}
|
2013-10-16 04:37:03 +04:00
|
|
|
#child {
|
2009-04-25 12:50:57 +04:00
|
|
|
height: 20px;
|
2013-10-16 04:37:03 +04:00
|
|
|
margin: 40px 0;
|
|
|
|
background-color: lightgreen;
|
2009-04-25 12:50:57 +04:00
|
|
|
}
|
|
|
|
</style>
|
|
|
|
</head>
|
|
|
|
<body>
|
2013-10-16 04:37:03 +04:00
|
|
|
<div id="separator"></div>
|
|
|
|
<div id="float">
|
|
|
|
<div id="child"></div>
|
2009-04-25 12:50:57 +04:00
|
|
|
</div>
|
|
|
|
</body>
|
|
|
|
</html>
|