Full width home advertisement

Post Page Advertisement [Top]

Text Shadow


CSS3 introduced a new text-shadow property that allows for, well, shadows to be placed on text. Internet Explorer 8 and below do not support text-shadow; surprisingly Internet Explorer 9 doesn’t either. Read below for an overly thorough explanation of hacking IE filters to get a convincing text shadow.


.text-shadow{
-moz-text-shadow:  2px 2px 2px #ff0000;
-webkit-text-shadow:  2px 2px 2px #ff0000;
filter: progid:DXImageTransform.Microsoft.Shadow(direction=135,strength=2,color=ff0000);/*IE Hack*/
}

This will make shadow for text on IE..
For any help comment bellow.

Bottom Ad [Post Page]