Skip to content
Advertisement

React MUI: Matching the heights of two grid sections

Using MUI have two separate grids next to each other, both taking up 50% of a larger grid.

As seen in the image below, I am having a hard time matching the heights of the two sections. I would like the smaller grid items (cards) to dynamically fill in the height of the left portion and match the height of the right portion.

How is this possible with Mui?

Here is my current code:

JavaScript

current layout

Advertisement

Answer

You need to set the height of all containers and the item to 100%:

JavaScript

Codesandbox Demo

User contributions licensed under: CC BY-SA
2 People found this is helpful
Advertisement