If I set the following css for a div:
-webkit-overflow-scrolling: touch;
the custom css I use for hiding the scrollbar gets overridden and the default scrollbar appears on iPad.
This is the css I use to hide the scrollbar:
::-webkit-scrollbar {
width: 12px;
opacity:0;
}
::-webkit-scrollbar-track {
opacity:0;
}
::-webkit-scrollbar-thumb {
opacity:0;
}
If you know any solution to override the default scrollbar when the overflow-scrolling is set to touch, I would be grateful for your help.
Thanks!