blob: 152c014db96bd082752aaae29f385c2735cb7774 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
|
<!DOCTYPE html>
<html>
<head>
<!-- Without floats, no clearance applies, thus margin-top of #clear
should collapse with margin-bottom of its parent element. -->
<style type="text/css">
#parent {
margin-bottom: 10px;
}
.separator {
height: 20px;
background-color: green;
}
#clear {
clear: left;
margin-top: 20px;
}
</style>
</head>
<body>
<div id="parent">
<div class="separator"></div>
<div id="clear"></div>
</div>
<div class="separator"></div>
</body>
</html>
|