Dash data_table get rid of double scroll?

Hi,

I have styled my data table with

'overflowY': 'scroll',
'overflowX': 'scroll',

Why does it make a double scroll on both the horizontal and vertical scroll?

It looks messy, so is it possible to only have a single scroll?

double%20scrool

1 Like

changing from ‘scroll’ to ‘auto’ fixed it;

'overflowY': 'auto',
'overflowX': 'auto',
1 Like