I need help creating a grid with 100% height that has the following layout:
The second row should expand to fill the remaining vertical space, even if cells C & D have limited content.
Additionally, if the content in cell D is too large, I want a vertical scrollbar to appear only for that cell. Here's an example:
Any tips on how to achieve this? Here's what I currently have (https://jsfiddle.net/z8742qdo/28/):
<body class="vh-100">
<div class="h-100 container-fluid">
<div class="row">
<div class="col-10 bg-warning">
A
</div>
<div class="col-2 bg-primary">
B
</div>
</div>
<div class="row">
<div class="col-2 bg-danger">
C
</div>
<div class="col-10 bg-success">
D<br>The<br>content<br>of<br>this<br>cell<br>should<br>overflow<br>
with<br>scrollbars<br>only<br>
</div>
</div>
</div>
</body>