Ver Mensaje Individual
  #1 (permalink)  
Antiguo 01/02/2011, 11:55
superdit
 
Fecha de Ingreso: enero-2011
Mensajes: 3
Antigüedad: 13 años, 3 meses
Puntos: 0
Internet Explorer no incorpora las CSS

Pues eso, que en FF, Safari y Chrome las pilla bien, pero en IE sólo pilla las del body...

Estos son los códigos:


Código PHP:
<html> 
<head> 
   <link rel="stylesheet" type="text/css" href="estilos.css">
   <title>Banco de Imagenes de Puerto Sherry</title> 
  
   </head>

<body>
<center>
    <img src="/puerto/Imagenesjorge/logos/Logo%20PSHERRY.png"  width="250"  />
        <br><br><br>

    <titulo>WEB DE TRABAJO DEL BANCO DE IMAGENES DE PUERTO SHERRY</titulo>
    <br><br><br>
</center>
<?php
 $pagina
="inicio";    
    
 echo
"<BR>";

include(
"botones.php");
    
?>
</body>
</html>
las css:


Código:
  body{
	  background-color: #A6C7E6;
	  font-family:Arial, Helvetica, sans-serif;
	  color:#FFF;
  }
	   
  titulo{
	 font-size:25px;
	 font-weight:bold;
  }
    
  enlace{
	  font-size:36px;
  }
    
  boton{
	  background-color:#000066;
	  border: medium solid #ffffff;
	  width:90px;
	  padding:3px;
	  margin:3px;
	  font-size:18px;
	  font-weight:bold;
  }
Muchas gracias

Última edición por superdit; 01/02/2011 a las 11:56 Razón: terminar el mensaje...