您好,我正在尝试并排生成盒子我不知道该怎么做我尝试过使用Float:left;
但这也不起作用是我的 css 代码
<style>
div.heh
{
width:550px;
height:200px;
border:1px solid black;
background-color: #f5f5f5;
border: .5px solid #e3e3e3;
border-radius: 1px;
padding: 19px;
margin-bottom: 5px;
min-height: 10px;
-webkit-box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.05);
box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.05);
box-align:left
float:left;
}
div.hehh
{
width:550px;
height:200px;
border:1px solid black;
background-color: #f5f5f5;
border: .5px solid #e3e3e3;
border-radius: 1px;
padding: 19px;
margin-bottom: 5px;
min-height: 10px;
-webkit-box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.05);
box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.05);
box-align:right
float:right;
}
</style>
<!------- here is the HTML Structure ----->
<div class="heh" align="left">
<h3>SteamRep:<button type="button" class="btn btn-default" >Normal</button><br>
<a href="http://backpack.tf/id/712">View Backpack</a><br>
<a href="http://www.tf2outpost.com/user/285419">View TF2Outpost</a>
</h3>
</div>
<div class="hehh">
<h3>Positive Reputation:<font color="green">100</font><br>
Negative Reputation:<font color="red">1</font></br>
Total Raffles Participated:<font color="green">12</font><br>
Warnings Received:<font color="red">0</font><br>
</h3>
</div>
在上面的代码中,这些框会在彼此下方产生我不知道出了什么问题我在其他地方搜索过也没有找到太多资源这里是图像