Ver Mensaje Individual
  #1 (permalink)  
Antiguo 07/11/2012, 05:57
charlyta
 
Fecha de Ingreso: junio-2008
Mensajes: 291
Antigüedad: 15 años, 10 meses
Puntos: 9
contenido 100% height

Hola. Me resulta imposible adaptar el contenido de un div al 100% height. El principal problema es que lo intento adaptar con un footer bottom fixed y no hay manera. Este es el codigo y el enlace donde ver el ejemplo:

http://jsfiddle.net/charlyta/hyfUe/


Código HTML:
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Strict//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd">
<html xmlns="http://www.w3.org/1999/xhtml" xml:lang="en" lang="en"><head>
    <meta name="Author" content="(c) 2008 - pud.ca">
    <meta http-equiv="imagetoolbar" content="no">
    <meta http-equiv="content-type" content="text/html; charset=ISO-8859-1">
    <title>100% height example</title>
    <style type="text/css">
        * {
            margin: 0;
            padding: 0;
            }
        
        body, html {
            height: 100%;
            }
        
        #container {
			background: #f00; /* styling only */
			width: 100%;
			margin: 0 auto;
			position: relative;
			height: auto !important;
			min-height: 100%;
			height: 100%;
			
	
	
            }
        
        #content {
			padding-bottom: 100px;
			width: 980px;
			background-color: #FFF;
			margin: 0 auto;
			min-height: 100%;
			margin-top: -20px;
			-webkit-box-shadow: 0px 1px 3px rgba(27, 57, 50, 0.44);
			-moz-box-shadow:    0px 1px 3px rgba(27, 57, 50, 0.44);
			box-shadow:         0px 1px 3px rgba(27, 57, 50, 0.44);
			-moz-border-radius: 5px;
			border-radius: 5px;
			position:relative;
			display: table;
			
            }
        
        #footer {
            position: absolute;
            left: 0;
            bottom: 0;
            height: 100px;
            width: 100%;
            background: #0f0;
            }
			
			#header {
           
            height: 100px;
            width: 100%;
            background: #0f0;
            }
            
    </style>
</head>
<body>
    
    <div id="container">
    <div id="header">
    header
</div>
        <div id="content">
            Your content goes here
        </div>
        <div id="footer">
            Footer here
        </div>        
    </div>



</body></html>