I am trying to simulate the appearance of a website on a mobile phone. For example, consider the following code:
<div>
<div class = "col-md-6 col-sm-6 col-xs-12">
First
</div>
<div class = "col-md-6 col-sm-6 col-xs-12">
Second
</div>
</div>
The above code should always display in the xs-12 version of the site on a mobile device. I attempted to achieve this using
<meta id="viewport" name=viewport content="width=200px; initial-scale=1">
, but it did not produce the desired result.