-
Notifications
You must be signed in to change notification settings - Fork 3.3k
/
Copy pathborder-image-007-ref.html
63 lines (51 loc) · 1.31 KB
/
border-image-007-ref.html
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
56
57
58
59
60
61
62
63
<!DOCTYPE html>
<meta charset="UTF-8">
<title>CSS Reftest reference</title>
<style>
div.outer
{
height: 20px;
margin-bottom: 16px;
width: 20px;
}
div.inside
{
background-color: blue;
height: 12px;
margin: 2px 4px 6px 8px;
width: 8px;
}
div#first-subtest
{
border: green solid 1px;
padding: 39px;
}
div#second-subtest
{
border-top: green solid 1px;
border-right: green solid 5px;
border-bottom: green solid 1px;
border-left: green solid 5px;
padding: 39px 35px;
}
div#third-subtest
{
border-top: green solid 1px;
border-right: green solid 5px;
border-bottom: green solid 10px;
border-left: green solid 5px;
padding: 39px 35px 30px;
}
div#fourth-subtest
{
border-top: green solid 1px;
border-right: green solid 5px;
border-bottom: green solid 10px;
border-left: green solid 15px;
padding: 39px 35px 30px 25px;
}
</style>
<div class="outer" id="first-subtest"><div class="inside"></div></div>
<div class="outer" id="second-subtest"><div class="inside"></div></div>
<div class="outer" id="third-subtest"><div class="inside"></div></div>
<div class="outer" id="fourth-subtest"><div class="inside"></div></div>