Is there a way to change the color of a div's scrollbar when hovering over the div without assigning an id to it? I've attempted the following methods so far:
div:hover {
::-webkit-scrollbar {color: black}
}
and
div:hover + ::-webkit-scrollbar{
color: black;
}