See images for what I mean.
So as the title says, I'm having trouble making these tables equal height. I thought this wouldn't be a hard fix, but I couldn't manage to get it to work.
Desired outcome:
I want for the second rows in both of the small tables from the image to keep going, even if empty, until the table is the same height as the longer table.
The wikitext code:
All of these tables are inside 2 divs in pairs like this:
<div style="display: flex; flex-wrap: wrap; gap: 5px;">
<div style="flex: 1;display:inline-grid">
--Table here
</div>
<div style="flex: 1; display:inline-grid;">
--Second table here
</div>
</div>
What I tried:
So far I tried putting these into all divs separately (and all at the same time), but none of them had any visible effect:
justify-content: stretch;
justify-items: stretch;
justify-self: stretch;
align-items: stretch;
align-self: stretch;
Changing display types to table, table-row, table-column
Setting height:100% in divs and tables themselves
Setting min-height but it makes the table look weird and it'd only work for specific screens
Sorry if this may be a straightforward answer, but I'm really lost here. I'm new to wikitext (and htlm/css at that) so I decided to ask here since it's the only place I know where people can help me.