コード:インラインブロック要素のデフォルトマージンを削除しますか?
<div style={{margin:'20px auto 20px auto', textAlign: 'center'}}>
{this.state.boxes.map((item,index) => {
return (<div
key={index}
style={{display: 'inline-block',boxSizing:'borderBox', border: "solid #333 1px", height: '130px', width: '130px', position: 'relative'}} > </div>)
})}
</div>
いますが、真ん中の上部と下部に小さなスペースがあります見ることができるように?
'font-size'を' 0'に設定します。探検する別の解決策:https://css-tricks.com/fighting-the-space-between-inline-block-elements/ – UncaughtTypeError
また、線の高さを1にリセットしましたか? – Stuart
私は提案を試してみます、それはいくつかのデフォルトの動作だと思います –