blob: cefec6cd1962f678f9ad7217ebb32b029151cb22 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
|
a {
text-shadow: initial;
}
b {
text-shadow: inherit;
}
c {
text-shadow: unset;
}
d {
text-shadow: none;
}
e {
text-shadow: 0 5em currentColor;
}
f {
text-shadow: 5px 3mm rgb(0,0,0);
}
|