summaryrefslogtreecommitdiffstats
path: root/layout/reftests/margin-collapsing/fieldset-child-1.html
blob: a9e7a7820e3bd72d06f4c388a5123786ded393c5 (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
28
29
<!DOCTYPE html>
<html>
<head>
<style type="text/css">
.separator {
 height: 20px;
 background-color: green;
}
fieldset {
 margin: 0;
 padding: 0;
 border: none;
 background-color: lightgreen;
}
#child {
 height: 40px;
 margin: 20px 0;
 background-color: green;
}
</style>
</head>
<body>
<div class="separator"></div>
<fieldset>
 <div id="child"></div>
</fieldset>
<div class="separator"></div>
</body>
</html>