Ver Mensaje Individual
  #3 (permalink)  
Antiguo 23/06/2013, 11:41
Avatar de ArturoGallegos
ArturoGallegos
Moderador
 
Fecha de Ingreso: febrero-2008
Ubicación: Morelia, México
Mensajes: 6.774
Antigüedad: 16 años, 2 meses
Puntos: 1146
Respuesta: Div y tamaños

con CSS no me viene nada a la mente pero con jQuery puedes hacer algo como esto
Código Javascript:
Ver original
  1. $('.1per').each(function(){
  2.         var highestBox = 0;
  3.         $('div.lf', this).each(function(){
  4.             if($(this).height() > highestBox)
  5.             highestBox = $(this).height();
  6.         });
  7.         $('div.lf',this).height(highestBox);
  8.     });

Has de considerar que no esta permitido que las clases o identificadores empiecen con un numero, así que no se si te funcione bien, te recomiendo corregir eso.