blob: ada9dbac1f3587be917f26772b52904885a0277e (
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
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
|
<!DOCTYPE html>
<meta charset="UTF-8">
<title>CSS Reference Test</title>
<link rel="stylesheet" type="text/css" href="/fonts/ahem.css">
<link rel="author" title="Gérard Talbot" href="http://www.gtalbot.org/BrowserBugsSection/css21testsuite/">
<style>
div
{
color: transparent;
font-family: Ahem;
font-size: 50px;
line-height: 1;
}
div.purple
{
text-shadow: 1em 0em purple;
}
div.orange-blue
{
color: yellow;
margin-left: 1em;
text-shadow: -1em 0em orange, 1em 0em blue;
}
div.fuchsia
{
margin-bottom: 0.2em;
text-shadow: 1em 0em fuchsia;
}
div#third-top
{
text-shadow: 1em 0em #BF7F7F;
}
div#third-horiz-left-right
{
color: yellow;
margin-left: 1em;
text-shadow: -1em 0em #FFD23F , 1em 0em #7F7FBF;
}
div#third-bottom
{
text-shadow: 1em 0em #FF7FBF;
}
</style>
<div class="purple">U</div>
<div class="orange-blue">B</div>
<div class="fuchsia">F</div>
<div class="purple">U</div>
<div class="orange-blue">B</div>
<div class="fuchsia">F</div>
<div id="third-top">T</div>
<div id="third-horiz-left-right">H</div>
<div id="third-bottom">B</div>
<!--
The top first 2 are:
.........
. .
. . <-purple
. .
.......................
. . . .
orange-> . . yel . . <-blue
. . low . .
.......................
. .
. . <-fuchsia
. .
.........
The bottom one is:
.........
. .
. . <-#BF7F7F
. .
.......................
. . . .
#FFD23F-> . . yel . . <-#7F7FBF
. . low . .
.......................
. .
. . <-#FF7FBF
. .
.........
-->
|