Ver Mensaje Individual
  #2 (permalink)  
Antiguo 02/08/2011, 11:56
Elmasterivan
 
Fecha de Ingreso: agosto-2011
Mensajes: 2
Antigüedad: 12 años, 8 meses
Puntos: 0
Respuesta: Div con 100% de alto css

Código HTML:
Ver original
  1. <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
  2. <html xmlns="http://www.w3.org/1999/xhtml">
  3. <meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
  4. <title>Documento sin título</title>
  5. <style type="text/css" >
  6.  
  7. #content{
  8.     width:350px;
  9.     height:500px;
  10. background-color:#CCC;     
  11. }
  12. .celeste{
  13.     background-color:#6FF;
  14.     float:left;
  15.     width:175px;
  16.     height:250px;
  17. }
  18.  
  19. .verde{
  20.     width:175px;
  21.     height:500px;
  22.     float:left;
  23.     background-color:#093;
  24. }
  25.  
  26. </head>
  27.  
  28. <div id="content">
  29. <div class="celeste"></div>
  30. <div class="verde"></div>
  31.  
  32.  
  33. </div>
  34. </body>
  35. </html>