
Yan yana olan div'lerin içerik uzunlukları ne kadar büyük olursa olsun hepsinin yüksekliğini aynı ya da eşit yapmak için aşağıdaki css ve html kodlarını kullanabilirsiniz. En yüksek div'in yüksekliğine göre diğerleri aynı olacak.
HTML Kodları
<div class="parent_div">
<div class="child_div">
<p>
Lorem Ipsum is simply dummy text of the printing and typesetting industry.
Lorem Ipsum has been the industry's standard dummy text ever since the 1500s,
when an unknown printer took a galley of type and scrambled it to make a type specimen book.
</p>
</div>
<div class="child_div">
<p>
Lorem Ipsum is simply dummy text of the printing and typesetting industry.
Lorem Ipsum has been the industry's standard dummy text ever since the 1500s,
</p>
</div>
<div class="child_div">
<p>
Lorem Ipsum is simply dummy text of the printing and typesetting industry.
</p>
</div>
</div>
CSS Kodları
.parent_div {
overflow: hidden;
height: auto;
margin-bottom: 10px;
}
.child_div {
padding-bottom: 100%;
margin-bottom: -95%;
}