I am developing a unique column-oriented and div-based table using React with Typescript. The data outside the table is organized in a column-based structure, rendering column 1 followed by row 1, row 2, row 3, then column 2 with its respective rows.
The issue arises when the height of a cell varies due to one cell being taller than the others. I desire for this custom div-based table to function like an HTML table tag, ensuring uniform cell height.
How can I ensure that the height of cells within each row are consistent, even if the heights vary between cells within the same row?
I aim for the height of cells within each row to be set to the highest height among all cells within that row, regardless of any differences in individual cell heights.