table-cell 要素の間にスペースを空ける必要がありますが、テーブルの側面にもスペースが追加されます。側面のスペースを削除するにはどうすればよいですか?これがフィドルです。<table>
タグもこれに使用できますが、問題はまだ残っています
<div class="wrapper">
<div class="table">
<div class="cell">
</div>
<div class="cell">
</div>
<div class="cell">
</div>
</div>
<div class="something-else">
some other elements, table sides should align with this
</div>
</div>
.wrapper {
border: 1px solid green;
padding: 5px;
}
.table {
display: table;
border-spacing: 15px 0;
width: 100%;
}
.cell {
display: table-cell;
height: 50px;
border: 1px solid blue;
}
.something-else {
border: 1px solid red;
margin-top: 10px;
}