I'm trying to get a particular css layout using Flexbox (as a fallback to a css grid layout), but actually I'm not sure if it's even possible to obtain what I have in mind.
I have the following HTML structure:
<div class="container">
<div class="div1">DIV 1</div>
<div class="div2">DIV 2</div>
<div class="div3">DIV 3</div>
</div>
And this is what I'm trying to realize (qute easy with css grid):
In addition to that I'd like that divs 1 and 3 to be fixed on scroll and the div2 content to be scrollable.
I just wonder if it's even possible to get this done; I have tried many flex settings but I can't get it.