blob: 627c7f392436b81fbadf7ac4f94d9343215751cf (
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
56
57
58
59
|
<html>
<head>
<style type="text/css">
body { background-color: white; margin: 0; padding: 0; }
p {
margin: 10px;
padding: 0;
border: 10px solid rgba(200, 160, 120, 0.5);
height: 10px;
}
/**
* XXX we cannot test the corner by this testing because when the corner
* is joined with anti-aliased, the edge isn't matching with the
* reference. The dashed and dotted line's anti-aliasing are same.
*/
/* Cover the coners by the white div element */
div {
position: absolute;
width: 10px;
height: 10px;
background-color: white;
}
div.tr {
right: 10px;
}
div.tl {
left: 10px;
}
div.bl {
left: 10px;
margin-top: 20px;
}
div.br {
right: 10px;
margin-top: 20px;
}
</style>
</head>
<body>
<p style="border-style: solid;"> </p>
<!-- <p style="border-style: dashed;"> </p> -->
<!-- <p style="border-style: dotted;"> </p> -->
<p style="border-style: double;"> </p>
<div class="tr"></div>
<div class="bl"></div>
<p style="border-style: ridge;"> </p>
<div class="tr"></div>
<div class="bl"></div>
<p style="border-style: groove;"> </p>
<div class="tr"></div>
<div class="bl"></div>
<p style="border-style: inset;"> </p>
<div class="tr"></div>
<div class="bl"></div>
<p style="border-style: outset;"> </p>
</body>
</html>
|