我想为我的网站上的内容设置 2 个不同的列,我想要的方式是这样的:
http://i.stack.imgur.com/V4uX2.jpg
它在我的电脑显示器上显示,但在我的手机上显示如下:
http://i.stack.imgur.com/H7CNe.png
如您所见,我希望两侧始终彼此相邻,而不是像在我的手机上那样在另一侧下方。
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>