Textured Text in IE
by Vinay Kumar
HTML
<div class="texture">
<div class="key">This text is textured</div>
</div>
CSS
.texture {
background : black;
}
.key {
padding: 100px;
background-color: #FFF;
color: #8B4813;
font-size: 120px;
/* filter:progid:DXImageTransform.Microsoft.Chroma(color='#8B4813'); */
}