blob: 315ea6c4523e9b8a677ffca662d0217e89f6e9b5 (
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
|
<!DOCTYPE html>
<html>
<head>
<title>Bug 1122366 - margin collapsing</title>
<style type="text/css">
div {
font: 40px/1em serif;
height: 4em;
}
div.wrapper {
margin: 10px;
background: blue;
border-left: green solid .5em;
border-right: green solid 1.5em;
width: 2em;
}
</style>
</head>
<body>
<div class="wrapper">
</div>
<div class="wrapper">
</div>
</body>
</html>
|