Is there a way to force a grid section to match the height of another column? I have a video player and a long list of videos for the user to choose from. The list currently has the overflow-y: scroll
property and a max height to fill the total grid area. But, because the video player has a dynamic height as well there ends up being a gap.
Here's what I'm going for:
I want the red section to max out where the yellow section ends. I'm currently trying to use a display: grid
layout, but I'm open to different suggestions.