blob: 22bcc41a525520a2fb0669c7b1389ff12225df89 (
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
44
45
46
47
48
49
|
<!DOCTYPE html>
<html>
<head>
<title>Bug 746015: Off-screen overflow column rules are not properly drawn.</title>
<style type="text/css">
* {
margin: 0 0;
padding: 0 0;
}
body,html {
padding: 0 0;
margin: 0 0;
line-height: 1.0;
}
div.column1 {
display: inline-block;
width: 180px;
height: 175px;
vertical-align: top;
white-space: no-wrap;
}
div.content {
width: 180px;
height: 175px;
background: blue;
}
div.column2 {
display: inline-block;
width: 180px;
height: 175px;
vertical-align: top;
}
div.colgap {
display: inline-block;
background-color: green;
width: 10px;
height: 175px;
}
</style>
</head>
<body>
<div class="column1"><div class="content"></div></div><div class="colgap"></div><div class="column2"><div class="content"></div></div>
</body>
</html>
|