Tema: Imágenes
Ver Mensaje Individual
  #1 (permalink)  
Antiguo 05/07/2006, 16:16
Avatar de Shia
Shia
 
Fecha de Ingreso: septiembre-2003
Mensajes: 202
Antigüedad: 20 años, 7 meses
Puntos: 0
Pregunta Imágenes

Hola

Tengo éste problemita, quiero cargar unas imágenes pero no me cargan, sin embargo el texto qué le pedí qué apareciera sobre las imágenes si aparece. Ahora lo curioso del asunto es qué si junto todo el código en un .html, colocando la parte de css dentro de <style> si funciona y carga las imagenes =S.

Alguien me suguiere porqué no funciona por separado, ¿tengo algo errado en el código?

Aquí dejo el contenido del .css y el .html.

Pd. las imagenes qué intento cargar todas están en el mismo directorio qué el .css y el .html. Gracias.

Tengo el archivo pp.css
Código:
/*m1 338x400*/ /*m2 162x400*/
body{
 background-color:#0000cc;
 color: #fff;
 font-family: verdana;
 font-size: 10px;
}

.izq{
 height:400;
 margin: 0px;
 vertical-align: center;
 background-image: url('m1.jpg');
 background-repeat: no-repeat;
}

.der{
 height: 400;
 margin: 0px;
 vertical-align: center;
 background-image:('m2.jpg');
 background-repeat: no-repeat;
}
Y el archivo .html

Código:
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN"
"http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<html>
<head>
<link href="pp.css" rel="stylesheet" type="text/css" />
<title>Test</title>
</head>
<body>
<div class="izq"> hola</div>
<div class="der">hola</div>
</body>
</html>
__________________
I don't care