Quantcast
Channel: Active questions tagged flexbox - Stack Overflow
Viewing all articles
Browse latest Browse all 1305

CSS Flex: Restrict max height of child within vertical Flex

$
0
0

I have a container (A) with flex-direction: column, containing 2 child elements (B and C)

The first child (B) has dynamic content and its height will vary.

The second child (C) uses flex-grow to fill the remaining height of the parent container.enter image description here

How can I create a child (D) that takes the full height of it's parent (C), with an overflow scroll property?

div {  padding: 0.5rem;  border: 1px solid black;}#A {  position: relative;  height: 200px;  display: flex;  flex-direction: column;  background-color: #DAE8FC;  padding: 1rem;  gap: 1rem;}#B {  background-color: #D5E8D4;}#C {  position: relative;  flex-grow: 1;  background-color: #FEF2CC;}#D {  overflow-y: scroll;  background-color: #ffffff;}
<!-- Content is editable to vary the content height easyly --><div id="A" contenteditable><div id="B">    Content Of B</div><div id="C">    Content Of C<div id="D">      Content Of D</div></div></div>

Viewing all articles
Browse latest Browse all 1305

Trending Articles



<script src="https://jsc.adskeeper.com/r/s/rssing.com.1596347.js" async> </script>