
El pagina principal que tengo tengo el siguiente código:
Código :
<head> <link href="estilos/all.css" rel="stylesheet" type="text/css" /> <link href="estilos/formularios.css" rel="stylesheet" type="text/css" /> <title>Sitio Web</title> <!--[if lt IE 7]> <script type="text/javascript" defer src="Scripts/pngfix.js"></script> <link href="estilos/ie.css" rel="stylesheet" type="text/css" /> <![endif]--> </head> <body> <table width="770" border="0" align="center" cellpadding="0" cellspacing="0" class="contenido"> <tr> <td><img src="magen.png" alt="Funciona bien"></td><td></td> </tr> </table> </body>
Donde all.css contiene:
Código :
.contenido { width: 778px; background: transparent url(../imagenes/fondocuerpo.png); background-repeat: repeat-y; font-family: Tahoma, Verdana, Arial, sans-serif; font-size: 11px; color: #003366; text-align: justify; }
Y ie.css contiene:
Código :
.contenido { width: 778px; font-family: Tahoma, Verdana, Arial, sans-serif; font-size: 11px; color: #003366; text-align: justify; background: none; filter:progid:DXImageTransform.Microsoft.AlphaImageLoader(src='../imagenes/fondocuerpo',sizingMethod='scale'); background-repeat:repeat-y; }
Estro es lo que tengo no se que es lo que me falta o que estoy haciendo mal.
Agradesco la ayuda que me brinden
