i want to increase height of 2 divs that are parellel to each other , for example left column has less content and right has more content but what i want both should have equal height as left one has a background :
<div class="container">
  <div class="row">
    <div class="col-md-4 col-sm-4 col-xs-12" style="background:red;">
      <p>Div with less content </p>
    </div>
    <div class="col-md-8 col-sm-8 col-xs-12" >
      <p>Div with more content  that  without background </p>
    </div>
  </div>
</div>
need your help with this i am using bootstrap 3.0
 
    