1/* The element which contains one/many content sections */
2.container {
3 display: flex;
4 flex-direction: column;
5}
6
7/* The container's content you want to add an overflow to */
8.container .scrollable-content {
9 flex-grow: 1;
10 overflow: auto;
11}