Stylish HTML: De-emphasize scrollbars in small containers

Have a small scroll container where you want to de-emphasize the scrollbar, like in a popover? Say hello to scrollbar-color and scrollbar-width.

::picker(select) {
scrollbar-color: lightgray transparent;
scrollbar-width: thin;
}

The scrollbar-color property sets the thumb and track colors (here, light gray on transparent), while scrollbar-width can be set to thin for a more subtle appearance.

Demo:

A select dropdown with a subtle, thin scrollbar