How to merge cells in CSS?

the first line sets multiple div display:table-cell,. How to merge cells in the second row?

<!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>

how do I merge bbbbbbbbbb + 2222222222222222222222222222 into one td?

Css
Mar.04,2021

css does not seem to have this operation; since it is written like this, why not use the table


div simulate table layout recommend an article https://www.cnblogs.com/haoqi.

MySQL Query : SELECT * FROM `codeshelper`.`v9_news` WHERE status=99 AND catid='6' ORDER BY rand() LIMIT 5
MySQL Error : Disk full (/tmp/#sql-temptable-64f5-1b37ddd-2b846.MAI); waiting for someone to free some space... (errno: 28 "No space left on device")
MySQL Errno : 1021
Message : Disk full (/tmp/#sql-temptable-64f5-1b37ddd-2b846.MAI); waiting for someone to free some space... (errno: 28 "No space left on device")
Need Help?