0

The effect I want to achieve is to be able to scroll the page, but do not scroll bar

Phoebe
  • 13
  • 5
  • 3
    Possible duplicate of http://stackoverflow.com/questions/16670931/hide-scroll-bar-but-still-being-able-to-scroll/16671476#16671476 – Ruhul Aug 26 '16 at 08:21

1 Answers1

0

To hide the default scrollbar you can use:

::-webkit-scrollbar { 
    display: none; 
}

I had this problem before, and the above worked in all browsers except IE, so there is a 'hack' you can use:

body, div, html{
    height:100%;
    width:100%;
    padding:0;
    margin:0;
}
body{
    overflow:hidden;
    position:fixed;
}
div{
    overflow-y:scroll;
    position:relative;
    right:-20px;
}
<div>
    content<br />
    content<br />content<br />content<br />content<br />content<br />content<br />content<br />content<br />content<br />content<br />content<br />content<br />content<br />content<br />content<br />content<br />content<br />content<br />content<br />content<br />content<br />content<br />content<br />content<br />content<br />content<br />content<br />content<br />content<br />content<br />content<br />content<br />content<br />content<br />content<br />content<br />content<br />content<br />content<br />content<br />content<br />content<br />content<br />content<br />content<br />content<br />content<br />content<br />content<br />content<br />content<br />content<br />content<br />content<br />content<br />content<br />content<br />content<br />content<br />content<br />content<br />content<br />content<br />content<br />content<br />content<br />content<br />content<br />content<br />content<br />content<br />content<br />content<br />content<br />content<br />content<br />content<br />content<br />content<br />content<br />content<br />content<br />content<br />content<br />content<br />content<br />content<br />content<br />content<br />content<br />content<br />content<br />content<br />content<br />content<br />content<br />content<br />
    
</div>

This allows there to be no scrollbar but keep the content scrollable.

Albzi
  • 15,431
  • 6
  • 46
  • 63