↧
Answer by Travel and code enthousiast for Why is my page not scrollable?
For me there was an:overflow-y: hidden;in the css of the first child of the body with was preventing the page from becoming scrollable. Once I removed it the page could scroll.
View ArticleAnswer by Darkcoder for Why is my page not scrollable?
overflow-y: scroll;to both body and html html,body{overflow-y: scroll; }
View ArticleAnswer by Timo Kähkönen for Why is my page not scrollable?
Try this:html { overflow-y: scroll; }body { position: absolute; }Or this:html { overflow-y: scroll; overflow-x:hidden; }body { position: absolute; }
View ArticleWhy is my page not scrollable?
So I have made a few pages that use the following css code:html { overflow-y: scroll; } ul.navbar { list-style-type: none; position: fixed; top: 00px; left: 00px; width: 200px; height: 700px;...
View Article