i am working on bootstrap and i am stuck in a div orientation on small screen. on medium screen i am using 6, 6 columns which should stack on top of each other on small screeni want something list this
on small screen the columns are going like column 3 on top of column 4, but i want column 4 on top of column 3. how can i do that? i know it has to do something with push pull, but i am unable to figure it out
EDIT: i am currently using this code, which needs to be modify like the layout in the picture i have shared above
<div class="row">
<div class="col-md-6">
column 3
</div>
<div class="col-md-6">
column 4
</div>
</div>