简体   繁体   中英

Disabling only scroll-bar feature

I want to disable scroll-bar functionality for chrome and don't want to hide the scroll-bar by giving overflow:hidden . The scroll-bar should be visible

I want something like this: http://prntscr.com/ai5y9k

Any help would be great!!

use overflow: auto

that will display a scroll bar only when necessary (ie the content is higer than the window)

Closest you will get to, is to enforce the body to be no larger than the window then tell the scroll bar to always be present.

body { 
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  right:0;
  overflow:scroll;}

The technical post webpages of this site follow the CC BY-SA 4.0 protocol. If you need to reprint, please indicate the site URL or the original address.Any question please contact:yoyou2525@163.com.

 
粤ICP备18138465号  © 2020-2024 STACKOOM.COM