Есть контейнер, а в нем 3 блока с разной высотой. Высота блока зависит от контента.
Как задать всем блокам высоту, как у самого низкого из них?
jsfiddle
.wrapper{
width:600px;
height:200px;
background:lightgrey;
}
.item{
width:200px;
float:left;
}
.item:nth-child(1){
background:red;
}
.item:nth-child(2){
background:green;
}
.item:nth-child(3){
background:blue;
}
Ответ
$(document).ready(function() { var allDivs = $('.item'); var dvSmallest = allDivs[0]; $(allDivs).each(function() { if ($(this).height() < $(dvSmallest).height()) dvSmallest = $(this); }); $('.item').height(dvSmallest.height()); }); .wrapper{ width:620px; height:200px; background:lightgrey; } .item{ width:200px; float:left; overflow:auto; } .item:nth-child(1){ background:red; } .item:nth-child(2){ background:green; } .item:nth-child(3){ background:blue; }
Как-то так
Комментариев нет:
Отправить комментарий