インラインブロック要素間のゴーストスペースを削除するにはどうすればよいですか?
これは 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>