I am currently working on coding a page layout that resembles the design showcased in this CodePen example. The main container is set to occupy the entire height of the browser screen (100% height), with two child div elements each occupying 12 columns.
The first column has a predetermined height, while I am seeking a solution for the second column to fill the remaining vertical space within the container. Setting the height of the second column to 100% results in it taking up the full height of its parent container rather than adjusting to the available space, leading to the same height as the parent container. Is there a method to ensure that the second column fills the remaining vertical space?
UPDATE: It should be noted that the height of the first column can vary and is not fixed.