1 Make scrollbar always show up instead of autohide
2.list
3 {
4 background-color: #fff;
5 height: inherit;
6 overflow-y: scroll;
7 }
8
9.list::-webkit-scrollbar
10 {
11 background-color: white;
12 border-radius: 10px;
13 width: 20px;
14 }
15
16.list::-webkit-scrollbar-thumb
17 {
18 background-color: grey;
19 border-radius: 10px;
20 border: 5px solid white;
21 }
22
23.list::-webkit-scrollbar-thumb:vertical
24 {
25 height: 20px!important;
26 width: 20px;
27 }
1jQuery shouldn't be required. You could try adding the CSS:
2
3body {overflow-y:scroll;}
4This works across the latest browsers, even IE6.