CSS 中怎么合并单元格?

第一行设置多个 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 中?

阅读 10k
2 个回答

css好像没这操作;既然写成这样,为何不用表格

撰写回答
你尚未登录,登录后可以
  • 和开发者交流问题的细节
  • 关注并接收问题和回答的更新提醒
  • 参与内容的编辑和改进,让解决方法与时俱进
推荐问题
宣传栏