Ver Mensaje Individual
  #2 (permalink)  
Antiguo 22/04/2009, 17:25
Avatar de willyfc
willyfc
 
Fecha de Ingreso: octubre-2008
Ubicación: Santa Cruz - Bolivia
Mensajes: 662
Antigüedad: 15 años, 6 meses
Puntos: 40
Respuesta: Problema con div contenedor

no estoy seguro de si es esto lo que quieres, pero el page no existe entonces trata de tomar todo el ancho del navegador, el main_content no tiene ancho definido tampoco ni color de fondo, tampoco se repetirá por que no le has dicho que lo haga ya que tiene un alto en auto, espero esto sirva de guía:

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=iso-8859-1" />
  4. <title>Documento sin t&iacute;tulo</title>
  5. <style type="text/css">
  6. #page{width:764px; margin:0 auto;}
  7. #main_content {
  8.     width:764px;
  9.     padding: 10px;
  10.     height: auto;
  11.     overflow:auto;
  12.     background:#CCCCCC;
  13. }
  14.  
  15. #content {
  16.     width: 550px;
  17.     float: left;
  18.     background-color: #fff;
  19.     border: 1px solid #444;
  20.     margin-right: 10px;
  21. }
  22.  
  23. #sidebar {
  24.     width: 200px;
  25.     float: right;
  26.     background-color: #fff;
  27.     border: 1px solid #444;
  28. }
  29. .footer{clear:both; width:750px; height:20px; background:#000;}
  30. </head>
  31.  
  32.     <div id="page">
  33.         <div id="header">
  34.             <h1><a href="index.php">Mi Aplicacion</a></h1>
  35.             <div id="h_bar">
  36.                 <span class="b_welcome">Bienvenid@ </span>
  37.             </div>
  38.         </div>
  39.         <div id="main_content">
  40.             <div id="content">
  41.                 <?php include_once('contenido.php'); ?>
  42.             </div>
  43.             <div id="sidebar">
  44.                 <?php include_once('menu.php'); ?>
  45.             </div>
  46.         </div>
  47.         <div id="footer">
  48.            
  49.         </div>
  50.     </div>
  51. </body>
  52. </html>
__________________
WFC
codigo82