23/07/2009, 12:21
|
| | | Fecha de Ingreso: junio-2009 Ubicación: Guadalajara, MX.
Mensajes: 351
Antigüedad: 15 años, 5 meses Puntos: 38 | |
Respuesta: como puedo mandar mi header hasta arriba? hola, al poner el div "contenedor" desaparece el header :S.
lo pongo asi: style.css:
#contenedor{
width:100%;
margin:auto;
overflow:hidden;
position:relative
}
#div_header {
position: absolute;
width: 450px;
height: 450px;
margin-left: -225px; /*aquí pones la mitad del ancho, en valor negativo*/
top: 0px;
left: 50%;
background-image: url(imagenes/logo.jpg)
} HTML:
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.1//EN" "http://www.w3.org/TR/xhtml11/DTD/xhtml11.dtd">
<html xmlns="http://www.w3.org/1999/xhtml">
<head>
<meta http-equiv="Content-Type" content="text/html; charset=windows-1252" />
<title>LOGRAFICO.</title>
<LINK REL="stylesheet" HREF="style.css" TYPE="text/css">
</head>
<body>
<div id="contenedor">
<div id="div_header"></div>
</div>
</body>
</html>
en cuanto kito el div contenedor aparece el hedaer de nuevo pero si quisiera tener el div contenedor para que fuera como el body de la pagina. alguien sabe cual es mi problema?
muchas gracias x sus enseñanzas jejee |