blob: 27e93db744ea00dd5fbbe2fd3a46d8ea51561c1f (
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
|
<!doctype HTML>
<html>
<head>
<title>background-clip: text shadow</title>
<style>
div.out {
width: 500px;
height: 300px;
margin: 0px;
background-image: linear-gradient(green, green);
background-clip: text;
color: transparent;
font-size: 50px;
font-family: serif;
text-shadow: 0px 60px 5px red;
-moz-osx-font-smoothing: grayscale;
}
</style>
</head>
<body style="margin: 0px;">
<div class="out">
Text Shadow
<div style="display:inline-block; width:0px; height:100px;"/>
</div>
<!-- A white div which is used to cover on text -->
<div style="position: absolute; top: 0px; left:0px; width:500px; height:110px;background-color:white;"/>
</body>
</html>
|