blob: e30ec4cb94644f665bc8acd9e282078299a2d739 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
|
<html>
<head>
<title>Collapsing margins</title>
<style type=text/css>
div { margin-top: 100px; }
</style>
</head>
<body>
<h1>Collapsing of parent top margin with first child top margin</h1>
<div>
<div>
<div style="border: 1px solid black">
There should be a 100px vertical space above.
</div>
</div>
</div>
</body>
</html>
|