I'm using jQuery to iterate over three div elements grouped in a section element, and equalize their height. While that part works perfectly, the divs are left vertically uneven where their bottoms were aligned before. The divs seem to be shifted down on the page the amount jQuery added to their height, respectively.
Here's a non-problematic jsFiddle (I don't change the heights), and one with my problem (I change the heights and it messes up the divs).
Here's my CSS:
section.myGroup {
text-align : center;
}
.myBlock {
margin : 10px;
padding : 10px;
text-align : justify;
display : inline-block;
width : 275px;
background-color : #ffffff;
background-image : url('images/background.png');
background-repeat : repeat;
position: relative;
}
And here's my HTML:
<section class="myGroup">
<div class="myBlock">
<p>Lorem ipsum bla bla bla....</p>
</div>
<div class="myBlock">
<p>Lorem ipsum bla bla bla....</p>
</div>
<div class="myBlock">
<p>Lorem ipsum bla bla bla....</p>
</div>
</section>
EDIT: Here's the jQuery I use to equalize the height of the divs. It's pretty standard:
var tallest = 0;
$('.myBlock').each(function() {
var thisHeight = $(this).height();
if (thisHeight > tallest) {
tallest = thisHeight;
}
});
$('.myBlock').height(tallest);
