I can't add scroll bar for overflow content

Hello I can’t add scroll bar for overflow content of my survey can somebody help me? I tried the write overflow:visible and other codes for scroll bar but it doesn’t work.
My Survey

1 Like

Hey, i just looked at your code. One thing to note is that a web page automatically allows for scroll if the contents overflow beyond the viewport or the element you want to preview through it.
Now from your code setting position:fixed, prevents the overflow scrolling to happen;
Remove the position:fixed from your code and see what happens.
ALso overflow-y allows scrolling from right to left and vice versa, therefore in your current context wont do much.

1 Like

Thank you . I did what you said and solved my problem.

1 Like

You are welcome, am happy to help