Ver Mensaje Individual
  #1 (permalink)  
Antiguo 16/08/2011, 12:19
php1
 
Fecha de Ingreso: junio-2011
Mensajes: 36
Antigüedad: 12 años, 10 meses
Puntos: 0
no aparecen mis imagenes en el body ni pie de pagina

Hola tengo lo siguiente en mi css

#header
{
background-image:url(imagenes/header.jpg);
/*background-repeat:no-repeat;*/
width:1000px;
height:150px;
background-position: 1000px 150px;

}

#body
{
background-image:url(imagenes/home.jpg);
background-repeat:no-repeat;
width:1000px;
height:350px;
background-position: 1000px 350px;
background-attachment: scroll;
position: absolute;
}
#foot
{
background-image:url(imagenes/footer.jpg);
background-repeat:no-repeat;
width:1000px;
background-position: 1000px 50px;
height: 50px;
position: absolute;
}

en mi doc html tengo lo siguiente

<html xmlns="http://www.w3.org/1999/xhtml">
<head>
<link rel="stylesheet" type="text/css" href="lab.css" class="/>
<meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
<title>Documento sin titulo</title>
</head>

<body>
<div id="header" class="header" heigth="150px" >
</div>
<div id="foot" class="foot" heigth="50px">
<div style="float:left"></div>
<div style="float:right"></div>
</div>
<div id="body" class"body" height="350px">
</div>

</body>
</html>

el problema es q solo me pone la imagen del encabezado pero el body ni el pie d pagina se ven..alguien me podria ayudar. Gracias