I'm currently trying to set up overflow on the div surrounding the table, for this I use a specific webkit style
.overflow::-webkit-scrollbar { width:30px; } .overflow::-webkit-scrollbar-track { -webkit-box-shadow: inset 0 0 6px rgba(0,0,0,0.3); -webkit-border-radius: 15px; border-radius: 15px; } .overflow::-webkit-scrollbar-thumb { -webkit-border-radius: 15px; border-radius: 15px; -webkit-box-shadow: inset 0 0 6px rgba(0,0,0,0.5); background:#f00; }
They work great on desktop browsers, but don't work on mobile devices.
Is there a problem that mobile browsers just don't support this? Or will support be provided in the near future?
I have seen several Javascript based solutions, but all of this adds a little too much bloat to just draw a scroll bar in webkit based browsers.
source share