Ver Mensaje Individual
  #3 (permalink)  
Antiguo 14/10/2012, 06:53
Avatar de emprear
emprear
Colaborador
 
Fecha de Ingreso: junio-2007
Ubicación: me mudé
Mensajes: 8.388
Antigüedad: 17 años, 5 meses
Puntos: 1567
Respuesta: Color de Fondo de un div

Dándole algún contenido al div

Código HTML:
Ver original
  1. <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN"
  2. "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
  3. <html xmlns="http://www.w3.org/1999/xhtml">
  4. <title>titulo</title>
  5. <meta http-equiv="content-type" content="text/html; charset=utf-8" />
  6.  
  7. <style type="text/css">
  8. /*<![CDATA[*/
  9.  
  10. body {
  11.    margin:0 auto;
  12. }
  13. #Contenedor {
  14. margin: 0 auto;
  15. width:1000px;
  16. }
  17. #DivFondo {
  18.    position:relative;
  19.    width: 1000px;
  20.    z-index: 2;
  21.    top: 10px;
  22.    background-color:#FCF;
  23. }
  24.  
  25.  
  26. /*]]>*/
  27. </head>
  28. <div id="contenedor">
  29.  
  30. <div id="DivFondo">
  31.     fondo
  32. </div>
  33. </div>
  34. </body>
  35. </html>

si vas a usar porcentajes, tenes que definir la altura de los elementos contenedores
Código HTML:
Ver original
  1. <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN"
  2. "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
  3. <html xmlns="http://www.w3.org/1999/xhtml">
  4. <title>titulo</title>
  5. <meta http-equiv="content-type" content="text/html; charset=utf-8" />
  6.  
  7. <style type="text/css">
  8. /*<![CDATA[*/
  9.  
  10. html, body {
  11.    margin:0 auto;
  12.    height: 100%;
  13. }
  14. #Contenedor {
  15. margin: 0 auto;
  16. width:1000px;
  17. height: 100%;
  18. }
  19. #DivFondo {
  20.    position:relative;
  21.    width: 1000px;
  22.    z-index: 2;
  23.    top: 10px;
  24.    background-color:#FCF;
  25.    height: 100%;
  26. }
  27.  
  28.  
  29. /*]]>*/
  30. </head>
  31. <div id="Contenedor">
  32. <div id="DivFondo">
  33.     fondo
  34. </div>
  35. </div>
  36. </body>
  37. </html>
Aclaración:
z-index solo funcionará en capas con posición absolute o fixed

Saludos
__________________
La voz de las antenas va, sustituyendo a Dios.
Cuando finalice la mutación, nueva edad media habrá
S.R.