第一行设置多个 div display:table-cell,第二行怎么合并单元格?
<!DOCTYPE html>
<div style="display:inline-table;">
<div style="display:table-row; background-color:red;">
<div style="display:table-cell; background-color:green;">aaaaaaaaaaaaaaaaaa</div>
<div style="display:table-cell; background-color:gold;">1111111111111111111</div>
</div>
<div style="display:table-row; background-color:pink;">
<div style="display:table-cell; background-color:green;">bbbbbbbbbb</div>
<div style="display:table-cell; background-color:gold;">22222222222222222222222222</div>
</div>
</div>
怎么把 bbbbbbbbbb + 22222222222222222222222222 合并放在一个 td 中?
css好像没这操作;既然写成这样,为何不用表格