CSS Text Effects
CSS
Download (.zip)
<div style="width:100%;color:black;filter:Glow(color=red,strength=5)">Test</div> <div style="width:100%;color:red;filter:DropShadow(color=silver, offx=3, offy=3)">Test</div> <div style="width:100%;color:black;filter:Shadow(color=#808080, direction=135)">Test</div> <div style="width:100%;color:hotpink; filter:Wave(freq=2, light=20, phase=1, strength=2);">Test</div> <a href="#" style="Text-decoration: none;">Test</a> <a href="#" style="Text-decoration: underline;">Test</a> <P style='text-indent: 3em'>Test</P> <P style='letter-spacing: 0.1cm;'>Test</P> <P style='word-spacing: 1em;'>Test</P> <P style='text-transform: uppercase;'>Test</P> <P style='text-transform: capitalize;'>Test</P> <P style='text-transform: lowercase;'>Test</P> <P style='text-transform: none;'>Test</P>
|