Text Stroke Css
by muthu[ Edit ] 2013-11-18 16:14:12
Css Text Stroke :
Text Stroke is used to Highlight the text in HTML.
--------------------------------- CSS Code ---------------------------------
.stroke { font:150px Verdana, Geneva, sans-serif; color:#ff00e4;
text-shadow: 4px 0 0 #000, -4px 0 0 #000, 0 4px 0 #000, 0 -4px 0 #000, 6px 6px #000, -6px -6px 0 #000, 6px -6px 0 #000, -6px 6px 0 #000;}
--------------------------------- HTML Code ---------------------------------
<div class="stroke">Your Text</div>
Example :