How to apply background color to whole div in case of overflow:auto div.currently background color is applied to only some part of div.not a whole div.
.brd{
border:1px solid grey;
height:auto;
max-height: 200px;
overflow:auto;
}
.content{
float: left;
width:50%;
}
.back-clr{
background-color: red;
}
<div class="container">
<div class="row">
<div class="col-md-8 brd">
<div class="content" style="width:50%">
test test test <br>
test test test <br>
test test test <br>
test test test <br>
test test test <br>
test test test <br>
test test test <br>
test test test <br>
test test test <br>
</div>
<div class="content back-clr">
this is second div
</div>
</div>
</div>