I am trying to include a bootstrap grid inside another grid and make sure it is still responsive but on larger screens the child grid doesnt collapse.
<div class="container"> <div class="row"> <div class="col-md-6">First column content</div> <div class="col-md-6"> <div class="row"> <!-- child grid --> <div class="col-md-6"><img class="img-responsive" src="http://placehold.it/350x150"></div> <div class="col-md-6">column content</div> </div> </div> </div> </div> bootsplay link: http://www.bootply.com/PCMV1BF4YF
the child grid should collapse in larger screens because the width of the parent class is already small. Is it possible to get around this issue?