Review Super Cinema Maximus Survey Form

Hi!
I finally finished my Survey Form. I found it quite difficult to position all the different input elements properly.

Does anyone know, how to stop the form from scrolling endlessly? I thought it has to do something with the background-image of the body which is in default repeat. But if so, I can I found out about the height that fits to that content and is also in relative units?

I would love to have the form stop scrolling when you reach its end and it has 100vh.

I really appreciate every hint.

Thanks,
Ashanti

Hi.

.hidden-label {
position: absolute;
top: 9999px;
}

Hi!
Thank you for taking the time looking through my CSS.

Normally I solve that problem with:

.hidden-label {
position: absolute;
width: 0;
height: 0;
top: 9999px;
overflow: hidden;
visibility: hidden;
}

Now I tried this and it worked

.hidden-label {
position: absolute;
left: -9999px;

Thank you for that hint :slight_smile: