I know using below bootstrap I can easy align div side by side but it's only work for desktop not for mobile.
<div class="container">
<h1>Hello World!</h1>
<div class="row">
<div class="col-sm-6" style="background-color:yellow;">
<p>Lorem ipsum...</p>
</div>
<div class="col-sm-6" style="background-color:pink;">
<p>Sed ut perspiciatis...</p>
</div>
</div>
</div>
Demo: click here to see
Desktop output:
Mobile output
As you can see the columns stack horizontally when it hit 765 x 645 @media_property
So, how would it be possible to display the columns in mobile as same it seems in desktop mode side by side?