Ver Mensaje Individual
  #2 (permalink)  
Antiguo 06/05/2012, 13:41
Avatar de Naahuel
Naahuel
 
Fecha de Ingreso: marzo-2011
Ubicación: localhost
Mensajes: 796
Antigüedad: 13 años, 10 meses
Puntos: 192
Respuesta: Divs interiores no toman el width

Código HTML:
Ver original
  1. <!DOCTYPE html>
  2. <meta charset="utf-8" />
  3. <style type="text/css">
  4.     <!--
  5.     #cont{
  6.         /* Limpiar flotado */
  7.         overflow: hidden;
  8.         border: 1px dashed #CCC;
  9.     }
  10.     .lado{
  11.         width: 33%;
  12.         background: yellow;
  13.     }
  14.     .lado.izquierda{
  15.         float: left;
  16.     }
  17.     .lado.derecha{
  18.         float: right;
  19.     }
  20.     .medio{
  21.         float:left;
  22.         width: 34%;
  23.        
  24.         background: grey;
  25.     }
  26.     -->
  27.  
  28. </head>
  29.     <div id="cont">
  30.         <div class="lado izquierda">partido 1</div>
  31.         <div class="medio">v/s</div>
  32.         <div class="lado derecha">partido 2</div>
  33.     </div>
  34. </body>
  35. </html>
__________________
nahueljose.com.ar