Ver Mensaje Individual
  #5 (permalink)  
Antiguo 03/03/2012, 18:09
joseoliveras
 
Fecha de Ingreso: febrero-2012
Mensajes: 84
Antigüedad: 12 años, 9 meses
Puntos: 14
Respuesta: problema con divs

No se si es esto lo que necesitas

Código HTML:
Ver original
  1. <!DOCTYPE html>
  2. <html lang="es">
  3.  
  4.  
  5.     <meta charset="utf-8" />
  6.        
  7.     <title>Sin-titulo</title>
  8.    
  9.     <style type="text/css">
  10.        
  11.         body {
  12.         margin-bottom:0px;
  13.         margin-top:30px;
  14.         text-align:center;
  15.        
  16.         }
  17.         #wrap {
  18.         margin:0 auto;
  19.         width:500px;
  20.         background:#eee;
  21.         }
  22.        
  23.         .logo {
  24.         width:152px;
  25.         height:158px;
  26.         margin:0 auto;
  27.         }
  28.         .menu {
  29.         height:50px;
  30.         width:300px;
  31.         background-color: #000033;
  32.         margin:0 auto;
  33.         }
  34.    
  35.     </style>   
  36.  
  37. </head>
  38.  
  39.     <div id="wrap" class="header">
  40.         <div class="logo">
  41.             <img src="images/logo_jota.png" width="122" height="158" align="left" />
  42.         </div>
  43.         <div class="menu"></div>
  44.     </div>
  45. </body>
  46.  
  47. </html>