summaryrefslogtreecommitdiffstats
path: root/third_party/WebKit/LayoutTests/fast/block/margin-collapse/102.html
blob: acf1c1159438be37e9ad277d32c494d79a7b08e8 (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
30
31
32
33
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0//EN">
<html xmlns="http://www.w3.org/1999/xhtml">
  <head>

    <title>Jeffrey Zeldman Presents: The Daily Report</title>

<style>
        
#bravefourhundred {
	width: 400px;
}

img {
    margin-top:1em;
    display: block;
    background-color:yellow;
}

.foo { float:left;width:100px; height:100px;background-color:green }

</style>



  </head>

<body>
<div id="bravefourhundred">
<div>There should be no vertical space between the two blocks below.</div>
<div class="foo"></div><img width="395" height="275" border="0">
</div>
</body>
</html>