In Bootstrap, is there an easy way to make all the span elements in a row the same height, i.e. the height of the tallest element?
Here\'s an example of what I mean.
You can do it using jQuery:
boxes = $('.well'); maxHeight = Math.max.apply( Math, boxes.map(function() { return $(this).height(); }).get()); boxes.height(maxHeight);
Here's an example: http://jsfiddle.net/DVnZ6/3/