如何删除行内块元素之间的重影空间?
这是一个 jsfiddle http://jsfiddle.net/hFDcV/,您可以在其中清楚地看到 div 之间的水平空间。
StackOverflow 规定的示例代码:
<div id='row'>
<div class='box'>Something</div>
<div class='box'>Something</div>
<div class='box'>Something</div>
<div class='box'>Something</div>
</div>
#row {
background-color: red;
}
.box {
width: 150px;
height: 150px;
background-color: yellow;
display: inline-block;
margin: 0;
padding:0;
}
</p>