私は次のコードを持っています:
<div class="table">
<div class="row">
<div class="cell">Cell</div>
<div class="cell">Cell</div>
</div>
<div class="row">
<div class="cell colspan2">Cell</div>
</div>
</div>
<style>
.table {
display: table;
}
.row {
display: table-row;
}
.cell {
display: table-cell;
}
.colspan2 {
/* What to do here? */
}
</style>
かなり簡単です。要素のcolspan(またはcolspanと同等のもの)を追加するにはどうすればよいdisplay: table-cell
ですか?
display: table-cell
。