How to always show the vertical scrollbar in a browser?

前端 未结 9 579
盖世英雄少女心
盖世英雄少女心 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:26

    // Nothing to show here
    body {
      height: 150vh;
    }
    
    ::-webkit-scrollbar {
      width: 15px;
    }
    
    ::-webkit-scrollbar-thumb {
      background: rgba(0, 0, 0, .6);
    }
    
    /* Of course you can style it even more */

    Scroll

提交回复
热议问题