|    
			
				30/09/2010, 10:20
			
			
			  | 
  |   |  |  |  Fecha de Ingreso: septiembre-2010 
						Mensajes: 75
					 Antigüedad: 15 años, 1 mes Puntos: 0 |  | 
  |  Estilos CSS se ven mal en IE  
  Hola amigos, necesito ayudaEsta haciendo un codigo que miraba como quedaba en Mozilla pero al final lo probé n IE y se ve fatal.!!:(
 
 Os pongo los codigos aver si me podeis ayudar porfabor
 
 codigo CSS:
 <style type="text/css">
 BODY { background: #555 url(back.bmp); background-repeat: repeat-x ; }
 a{text-decoration:none}
 A.clase1:visited {color:#CEF6F5}
 A.clase1:active {color:#CEF6F5}
 A.clase1:link {color:#CEF6F5}
 A.clase1:hover {color:#CEF6F5}
 
 A.clase2:visited {color:#F8E0E0}
 A.clase2:active {color:#F8E0E0}
 A.clase2:link {color:#F8E0E0}
 A.clase2:hover {color:#F8E0E0}
 
 A.clase3:visited {color:#FE9A2E}
 A.clase3:active {color:#FE9A2E}
 A.clase3:link {color:#FE9A2E}
 A.clase3:hover {color:#FE9A2E}
 
 A.imgbord:link {color: #BDBDBD;}
 A.imgbord:active {color: #BDBDBD;}
 A.imgbord:visited {color: #BDBDBD;}
 A.imgbord:hover {color: #848484;}
 </style>
 
 
 CODIGO PHP:
 <?php
 
 $link = mysql_connect("localhost","root","1234");
 mysql_select_db("album",$link);
 
 $sql = " SELECT foto,titulo,direction,categorie,telecharger,share FROM album ORDER BY id desc ";
 $result = mysql_query($sql);
 
 
 while ($row=mysql_fetch_array($result))
 {
 
 echo '<table border=0 bgcolor="#585858" width=400 style="border-top: 1px inset #6E6E6E; border-bottom: 1px inset #000000;">';
 echo '<tr>';
 echo '<td rowspan=4 width=120><img src="'.$row["foto"].'" width="150" height="120"></td>';
 echo '<td align="top" valign="top" height="20"><font face="Trebuchet MS" size="4" color="#CEF6F5">'.$row["titulo"].'</font></td>';
 echo '</tr>';
 echo '<tr>';echo '<td height="20" valign="top"><font face="Trebuchet MS" size="2" color="#F8E0E0">'.$row["categorie"].'</td>';echo '</tr>';
 echo '<tr>';echo '<td valign="top" height="20"><font face="Trebuchet MS" size="2" color="#F8E0E0"><a class="clase2" href"'.$row["telecharger"].'">TELECHARGER EN MP3 / Download<a/></font></td>';echo '</tr>';
 echo '<tr>';echo '<td valign="top"><font face="Trebuchet MS" size="2"><a class="imgbord" href"'.$row["share"].'"><img src="facebook like.bmp" border="2"><a/></font></td>';echo '</tr>';
 echo '</table>';
 
 }
 mysql_free_result($result)
 ?>
 
 Muchas gracias desde ahora
     |