I'm new to css, the code I am using for the overflow property doesn't appear to be working:
div.hidden {
background-color: #00FF00;
width: 1000px;
height: 1000px;
overflow: hide;
}
I'm new to css, the code I am using for the overflow property doesn't appear to be working:
div.hidden {
background-color: #00FF00;
width: 1000px;
height: 1000px;
overflow: hide;
}
https://developer.mozilla.org/en-US/docs/Web/CSS/overflow
overflow: hidden;
The possible values
hidden // not scroll, invisible content
visible // not scroll, visible content
scroll // scroll ever
auto // scroll only if it's neccesary