After attempting to create a webpage using Bootstrap 3.3.6, everything looked good on my laptop. However, when I tried to view it on mobile devices using Chrome and other browsers, there was a significant offset issue.
Current situation:
https://i.sstatic.net/xusIE.jpg
Desired outcome:
https://i.sstatic.net/Iv0RR.jpg
<div class="container-fluid">
<div class="row">
<div class="col-md-3">
Some content...
</div>
<div class="col-md-3">
Some content...
</div>
<div class="col-md-3">
Some content...
</div>
</div>
</div>
I even attempted to use
<div class="container">
, but the issue persisted.
Here is the meta tag used:
<meta name="viewport" content="width=device-width, initial-scale=1.0">