Hi guys,
I am just beginning my project and wonder why there is a vertical scroll bar created.
Can you please look at my project?
Hi guys,
I am just beginning my project and wonder why there is a vertical scroll bar created.
Can you please look at my project?
You cam assign the body a max-height
to be 100vh
and set overflow
to hidden
.video-overlay {
position: absolute;
top: 0;
left: 0;
width: 100%;
height: 100vh;
z-index: -1;
overflow: hidden; <-- just add this
}
Thanks for the help guys!