is it possible to let a Dash Datatable fill out the available space in a container?
I tried using the following CSS parameters
display: flex;
flex-flow: column;
flex: 1 1 auto;
as well as unsetting the default height of the Dash Datatable. However, this leads to displaying all rows in the Datatable at once, without any scrolling available.
The goal is to have a scrollable DataTable but no scrollbar on the page itself.