What I want to do is that if the row has one div
bigger all the other items of the row get the same height. For example here is the problem: https://i.stack.imgur.com/QdBDl.png
this is the markup:
<div class="box clearfix">
<div class="col-lg-4 col-md-6 col-xs-12 col-sm-6">
<div class="col-lg-4 col-md-6 col-xs-12 col-sm-6">
<div class="col-lg-4 col-md-6 col-xs-12 col-sm-6">
</div>
.col-lg-4{
width: 33.33333333333333%;
float:left;
height: 100%;
}
Height 100% is not working since they are float elements I guess. How can I workaround this?