.content-block
クラス コンテンツのダイナミック テキストなので、高さは div ブロックごとに異なります。JavaScript の div 検索の最大高さを使用すると、他の div に適用されるため、ブラウザですべての div のサイズを変更すると同じ高さになります。以下の疑似コードはほとんどのブラウザで動作しますが、クロムでは 320x480 未満のブラウザのサイズ変更は機能しません。
<script type="text/javascript">
function getMaxHeight(){
return maxHeight = Math.max.apply(null, $(".content-block").map(function (){
return $(this).height();
}).get());
}
$(window).resize(function(){
$('.content-block').css('height', 'auto');
$('.content-block').css('height', getMaxHeight);
});
$('.content-block').css('height', getMaxHeight);
</script>
<style>
.content-block{
height: auto;
display: block;
}