Reputation: 2496
Is is possible to have child div same height as parent in bootsrtap 3?
Here is example
<div class="row clearfix">
<div class="col-md-6" style="background-color:red;">
VERY LONG TEXT, JUST LONER< AND LONGER, AND LONGER, AND LONGER
</div>
<div class="col-md-6" style="background-color:green;">
SHORT TXT
</div>
</div>
I want right col to be the same height as left column is that possible on easy way?
Upvotes: 0
Views: 3469
Reputation: 566
here is the result: http://jsfiddle.net/kaAjW/2316/
.row {overflow: hidden;}
.col-md-6 {
padding-bottom: 1000px;
margin-bottom: -1000px;
}
Upvotes: 6