I need a table to scroll with the x-axis if the width of the table is greater than the width of the container. If I do this, it will work:
overflow-x: auto;
overflow-y: hidden;
But I need the overflow-y to be visible, because at the end of the table there is a select, and when I open the select it appears cut off.
If I put:
overflow-y: visible;
It puts a scroll upright as well.
If someone has any light, thank you in advance.