I am attempting to resize Section A in Column 1 to match the height of the row.
1 row, 2 columns:
+---------------------+---------------------+
| Column 1 | Column 2 |
| | |
| +-----------------+ | +-----------------+ |
| | Button | | | Section B | |
| +-----------------+ | | Expand/collapse | |
| | +-----------------+ |
| +-----------------+ | |
| | Section A | | +-----------------+ |
| | | | | Section C | |
| | Expands to | | | | |
| | height of 2nd | | | | |
| | Column 2, | | | | |
| | inner contents | | | | |
| | scroll | | | | |
+ +-----------------+ | +-----------------+ |
+---------------------+---------------------+
The "Button" adds text to Section A.
Section A should extend its height and allow scrolling for overflow content.
Section B is a collapsible panel.
Section C is also created.
The height of Column 2 dictates the height of Column 1.
A fiddle speaks louder than words: https://jsfiddle.net/gnp47bLf/3/
I have attempted setting the height to 100%, but it was unsuccessful. Click on the generate button to load text dynamically. Unsure if CSS flex property is the solution or how to use it. Bootstrap4 latest beta version is being utilized.