Why are Vertical + Horizontal Scrollbars still showing up when I've already added overflow: hidden'; elements(?) (or whatever they are called) to My .html files and .css file? (See Attached Video)
I'm trying to get rid of them completely but they keep showing up and I can't figure out why.., anyone know why this is happening / how to fix it?
This (below) is what I have in My .html and .css files regarding the overflow function/element:
index.html:
.window {
width: 50%;
height: 100vh;
background-color: #000000;
overflow: hidden;
position: absolute;
transition: all 1s ease;
}
style.css:
body{
color: #fff;
margin: 0;
text-align: center;
background: #000;
cursor: crosshair;
overflow: hidden;
}
It works! You're a legend ❤️ Been trying to figure that out for like an hour or two lol