I am attempting to create a table with nested cells that mimic subrows. Everything works well as long as the content in each cell does not exceed the min-height property value of the nested cell (A).
Unfortunately, if this value is exceeded, the table layout breaks down (B). Is there a straightforward way to properly align the nested cells to achieve a table layout like (C)?
Here is the code: https://stackblitz.com/edit/angular-aejwfm
https://i.sstatic.net/vvg6B.png
(*) I am aware that JavaScript can be used to set the height of all cells representing a specific subrow to the maximum height of all cells from that subrow, but I would prefer a solution using pure HTML/CSS/Angular.