Ajax Loader
×
HTML
<span data-text="LOREM IPSUM" id="inner" class="text">LOREM IPSUM</span>
1
<span data-text="LOREM IPSUM" id="inner" class="text">LOREM IPSUM</span>
2
<br/>
3
<span data-text="LOREM IPSUM" id="bevel" class="text">LOREM IPSUM</span>
 
CSS
.text {
1
.text {
2
  color:#777;
3
  font:68px impact;
4
}
5
#inner:before,#bevel:before {
6
  content:attr(data-text);
7
  color:transparent;
8
  text-shadow:1px 1px 2px #fff;
9
  position:absolute;
10
  z-index:1;
11
}
12
#bevel:before {
13
  text-shadow:-1px -1px 2px #fff;
14
}
 

Yummy Text Shadows ( Pure CSS )

CSSDeck G+