blob: bdf34ff7635fe28edd26b80e91b47c27625ae036 (
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
50
51
52
53
54
55
|
<!DOCTYPE html>
<html>
<head>
<title>Bug 1144501 testcase</title>
<meta charset="utf-8">
<style type="text/css">
.outer {
width: 300px;
height: 100px;
border: 1px solid silver;
margin: 8px 0;
display: inline-block;
vertical-align: top;
}
p {
margin: 0;
background: #eee;
}
.hr {
background-color: green;
border: transparent none 0px;
height: 10px;
margin: 0px;
width: 100%;
}
</style>
</head>
<body>
<div class="outer">
<p style="margin-top:20px">
There should be a horizontal green bar the full width of the div.
</p>
<div class="hr"></div>
</div>
<div class="outer">
<p style="margin-right:20px">
There should be a horizontal green bar the full width of the div.
</p>
<div class="hr"></div>
</div>
<br>
<div class="outer">
<p style="margin-bottom:20px">
There should be a horizontal green bar the full width of the div.
</p>
<div class="hr"></div>
</div>
<div class="outer">
<p style="margin-left:20px">
There should be a horizontal green bar the full width of the div.
</p>
<div class="hr"></div>
</div>
</body>
</html>
|