I have this website: http://fosterinnovationculture.com/infographic/index.html and I'm having a problem displaying the vertical scroll bar. The parent div
has a style of overflow: hidden;
. I set an overflow-y: scroll;
on the child div
so it scrolls but it's not displaying a scroll bar. Does anyone know why it's not displaying?
Here is the code for the .scroll class:
.scroll {
height: 90vh;
width: 100%;
overflow-y: scroll;
margin: 0 auto;
-webkit-overflow-scrolling: touch;
}
Here is the code for the parent div:
#users {
overflow: hidden;
}