I\'m currently styling the scrollbar using Webkit\'s ::-webkit-scrollbar CSS properties and would like to change these properties on a mousemove event. The problem is that I
you can define a function in JavaScript with your own css.
function overFlow(el) { el.style.cssText = "overflow: auto;"; }
using in html:
Something
More Info: https://css-tricks.com/almanac/properties/s/scrollbar/