I have three columns(col-md-4) in my footer and first column has two divided columns(col-md-6) again. I want those two columns inside the first column to be together in mobile view. How should I partition.?
What I tried was something like,
<div class="row">
<div class="col-md-4">
<div class="col-md-6">
</div>
<div class="col-md-6">
</div>
</div>
<div class="col-md-4">
</div>
<div class="col-md-4">
</div>
But I am getting the two columns one below another in mobile, I want them to be in same grid.