I want to have 2 different columns for the content on my website, they way I want it is like this:
https://i.sstatic.net/V4uX2.jpg
It shows like that on my computer monitor, but on my mobile it shows up like this:
https://i.sstatic.net/H7CNe.png
As you can see, I would like the two sides to always be next to each other and not one under the other as on my mobile.
CSS
#leftSide {
margin-top:80px;
margin-left:200px;
float:left;
width:400px;
}
#rightSide {
margin-top:80px;
margin-left:10px;
float:left;
width:400px;
}
HTML:
<div id="leftSide">
</div>
<div id="rightSide">
</div>