Why is my page not scrollable?

后端 未结 2 1930
一向
一向 2020-12-18 05:10

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;
             


        
相关标签:
2条回答
  • 2020-12-18 05:20

    overflow-y: scroll; to both body and html

    html,body{overflow-y: scroll; }
    
    0 讨论(0)
  • 2020-12-18 05:38

    Try this:

    html { overflow-y: scroll; }
    body { position: absolute; }
    

    Or this:

    html { overflow-y: scroll; overflow-x:hidden; }
    body { position: absolute; }
    
    0 讨论(0)
提交回复
热议问题