blob: 80e0fad184602b18707e7da19ede789e6f52a75c (
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
34
35
36
37
38
39
40
41
42
43
|
<!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;
}
div.lr {
-webkit-writing-mode: vertical-lr;
writing-mode: tb-lr; /* IE11 */
writing-mode: vertical-lr;
}
div.rl {
-webkit-writing-mode: vertical-rl;
writing-mode: tb-rl; /* IE11 */
writing-mode: vertical-rl;
}
div.widthless
{
margin-right: 2em;
width: 0;
}
</style>
</head>
<body>
<div class="wrapper lr">
<div class="widthless"></div>
<div class="widthless"></div>
</div>
<div class="wrapper rl">
<div class="widthless"></div>
<div class="widthless"></div>
</div>
</body>
</html>
|