I want to add specific styling for divs having a scrollbar, is there a way to select all divs that have a scrollbar? Can I use pseudo-element-selector for that?
For example?
div.has-scrollbar {background-color:red; }
div.no-scrollbar {background-color:green; }
To be clear, I don't want to style the scrollbar itself.
I tried something like this:
div:not(::-webkit-scrollbar)