Ver Mensaje Individual
  #2 (permalink)  
Antiguo 12/02/2007, 18:17
Avatar de Mikmoro
Mikmoro
Colaborador
 
Fecha de Ingreso: octubre-2006
Ubicación: K-pax
Mensajes: 7.228
Antigüedad: 17 años, 6 meses
Puntos: 280
Re: filtro de trasnparencia no funciona

Puedes probar de esta manera, que funciona bien:

Código:
<html>
<head>
<title>Documento sin t&iacute;tulo</title>
<meta http-equiv="Content-Type" content="text/html; charset=iso-8859-1">
<style>
#imagen{
background-image: url(pildoras.png) !important;
background-image: none;
filter: progid:DXImageTransform.Microsoft.AlphaImageLoader (src='pildoras.png', sizingMethod='scale');
background: repeat-y;
width: 400;
height: 219;
} 
</style>
</head>
<body style="background-color:#993300 ">
<div id="imagen"></div>
</body>
</html>
Mikel.