con CSS no me viene nada a la mente pero con jQuery puedes hacer algo como esto
Código Javascript
:
Ver original$('.1per').each(function(){
var highestBox = 0;
$('div.lf', this).each(function(){
if($(this).height() > highestBox)
highestBox = $(this).height();
});
$('div.lf',this).height(highestBox);
});
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.