I'm trying to expand a React dropdown component and make it visible outside of the table. The table has to be horizontally scrollable. I'm using the react-dropdown-select component. Here is the Codepen I made to indicate the problem (https://codesandbox.io/s/great-banach-48yt5)
Changing the outer Div property from
overflow: auto
To
overflow-x: auto;
overflow-y: visible
Doesn't work. Indicated in : https://stackoverflow.com/a/6433475/9358897
Any thoughts?