How to always show the vertical scrollbar in a browser?

前端 未结 9 570
盖世英雄少女心
盖世英雄少女心 2020-12-01 01:42

I want to always show vertical scrollbar in my webpage. Is it possible using javascript? I think it is possible using javascript or jQuery. I want vertical scrollbar whether

9条回答
  •  借酒劲吻你
    2020-12-01 02:10

    Tried to do the solution with:

    body {
      overflow-y: scroll;
    }
    

    But I ended up with two scrollbars in Firefox in this case. So I recommend to use it on the html element like this:

    html {
      overflow-y: scroll;
    }
    

提交回复
热议问题