How to always show the vertical scrollbar in a browser?

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

    try calling a function on the onload method of your body tag and in that function change the style of body like this document.body.style.overflow = 'scroll'; also you might need to set the width of your html as this will show horizontal scroll bars as well

    your html file will look something like this

    
    
    
    

提交回复
热议问题