Ver Mensaje Individual
  #6 (permalink)  
Antiguo 13/10/2011, 05:32
Avatar de IsaBelM
IsaBelM
Colaborador
 
Fecha de Ingreso: junio-2008
Mensajes: 5.032
Antigüedad: 15 años, 10 meses
Puntos: 1012
Respuesta: Posicionamiento de capas con CSS

a ver si esto es lo que quieres
Cita:
html, body {

font:Arial, Helvetica, sans-serif;
font-size:30px;
color: black;
height: 100%;
/* overflow:hidden; */
margin: 0;
}

#header {

background:#000;
height: 200px;
}



#contenido {
margin: 0 auto;
background: #FFF url('img1.png');
width: 1000px;
height: 1000px;
}

#footer {

background:#000;
height: 200px;
margin-top -200px;
}



<div id="header">

</div>

<div id="contenido">

<a href="grupoap.html"><b> Enter WebSite </b></a>
</div>

<div id="footer">

</div>