flor
Técnica de filtro alpha para I E 5.5 + !

Este filtro só funciona no Internet Explorer 5.5+

Código para este filtro

......................
<style type="text/css">
<!--
#imagem {
width:280px; /* largura da imagem */
position:relative; /* cria o contexto para posicionar o filtro */
}
#filtro {
filter:progid:DXImageTransform.Microsoft.Alpha(opacity=70);
/* filtro alpha para IE 5.5+ valores de 0(transparente) até 100(opaco) */
position:absolute;
width: 160px;
height:100px;
top:90px;
left:60px;
font: bold 14px arial, sans-serif;
color:#333333;
background:#ff9900; /* Aqui você muda a cor do filtro */
}
-->
</style>
</head>
<body>
<div id="imagem"><img src="filtro_fig1.jpg" alt="flor" width="280" height="210" >
<div id="filtro"> T&eacute;cnica de filtro alpha para I E 5.5 + !
</div>
</div>
</body>
</html>