Dándole algún contenido al div
Código HTML:
Ver original<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN"
"http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<html xmlns="http://www.w3.org/1999/xhtml"> <meta http-equiv="content-type" content="text/html; charset=utf-8" />
/*<![CDATA[*/
body {
margin:0 auto;
}
#Contenedor {
margin: 0 auto;
width:1000px;
}
#DivFondo {
position:relative;
width: 1000px;
z-index: 2;
top: 10px;
background-color:#FCF;
}
/*]]>*/
fondo
si vas a usar porcentajes, tenes que definir la altura de los elementos contenedores
Código HTML:
Ver original<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN"
"http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<html xmlns="http://www.w3.org/1999/xhtml"> <meta http-equiv="content-type" content="text/html; charset=utf-8" />
/*<![CDATA[*/
html, body {
margin:0 auto;
height: 100%;
}
#Contenedor {
margin: 0 auto;
width:1000px;
height: 100%;
}
#DivFondo {
position:relative;
width: 1000px;
z-index: 2;
top: 10px;
background-color:#FCF;
height: 100%;
}
/*]]>*/
fondo
Aclaración:
z-index solo funcionará en capas con posición absolute o fixed
Saludos