Очень простой плагин jQuery, который также автоматически изменяет размеры элементов при изменении размера окна.
Измените .my-inline-block-class на селектор jQuery, который будет выбирать ваши элементы inline-block.
(function($, window) {
var $ls, $t;
function autoheight() {
var max = 0;
$ls.each(function() {
$t = $(this);
$t.css('height','');
max = Math.max(max, $t.height());
});
$ls.height(max);
}
$(function() {
$ls = $('.my-inline-block-class'); // the inline-block selector
autoheight(); // first time
$ls.on('load', autoheight); // when images in content finish loading
$(window).resize(autoheight); // when the window size changes
});
})(jQuery, window);