Website Won't Scroll Down
My website works on a 15 inch laptop, but whenever I resize the browser, some of the information on my website 'disappears', as I am unable to scroll (scrollbar won't appear). I'm
Solution 1:
Remove overflow: hidden
in html
html {
height: 100%;
margin: auto;
width: 960px;
}
Remove position: absolute
for .Wrapper
For second site:
You added your main content inside header
with position: fixed; height: 50px;
. It's the problem.
Solution 2:
Yeah I just tried this out if you need something to overflow the sides you should use
html{
overflow-x: hidden;
}
instead of using just overflow.
|| For anyone who encounters this problem in the future. ||
Solution 3:
You have these CSS properties to your HTML tag.
html{
height: 100%;
margin: auto;
width: 960px;
overflow: hidden;
}
Try changing overflow to overflow: scroll
Post a Comment for "Website Won't Scroll Down"