Ver Mensaje Individual
  #2 (permalink)  
Antiguo 07/11/2012, 20:22
Avatar de tutorias
tutorias
 
Fecha de Ingreso: octubre-2012
Ubicación: Medellin
Mensajes: 69
Antigüedad: 11 años, 6 meses
Puntos: 13
De acuerdo Respuesta: Divs auto ajustables

Use responsive Desing. Te recomeindo que antes de postear, busque un poco, seguro ya esta este post resuelto.


Código HTML:
<!DOCTYPE html>
<html lang="es-CO">
<head>
  <meta charset="UTF-8">
  <title>@tutorias</title>
  <style type="text/css">
    .section{
      vertical-align: top;
      max-width: 99%;
      min-width: 99%;
    }
    .article{
      border        : 1px solid #ccc;
      display       : inline-block;
      min-width     : 100px;
      max-width     : 120px;
      vertical-align: top;
    }
  </style>
</head>
<body>
  <div class="section">
    <div class="article">
      contenido 1
    </div>
    <div class="article">
      contenido 2
    </div>
    <div class="article">
      contenido 3
    </div>
    <div class="article">
      contenido 4
    </div>
  </div>
</body>
</html>