我指的是我在 SO 上找到的这个小提琴display: inline-block;
,我已经将它应用到我自己的工作中,但我不知道如何让两个 div 并排齐平,而不是用 3-4px 的间隙?
我试过了:
html
<div class="container">
<div class="left">
LEFT
</div>
<div class="right">
RIGHT
</div>
</div>
css
div.left {
background:blue;
height:200px;
width:300px;
}
div.right{
background:green;
height:300px;
width:100px;
}
.container{
background:black;
height:400px;
width:450px;
}
.container div {
display: inline-block;
}
但一无所获。