我试图把我的容器(盒子)放在我的另一个容器(盒子)旁边。他们最终不是彼此相邻,而是彼此之上/之下。我希望它们彼此相邻而不是这样。
这是我的代码;
<div id="blog">
<img src="images/mlblog.png">
<img src="images/mltownareaconcept.png" style="width: 300px; height: 100px;">
<p>Check out the town area concept!</p>
<p><a href="http://community.mooselounge.me/blog/">Click here to read the blog!</a></p>
#blog {
background: url(-) repeat;
width: 300px;
height: 250px;
border: 2px solid #855E42;
margin-left: 200px;
margin-top: 50px;
}
#forums {
background: url(-) repeat;
width: 300px;
height: 250px;
border: 2px solid #855E42;
margin-left: 900px;
margin-top: 0px;
}
你知道我该如何解决这个问题吗?谢谢!