!!! note This post is a thought. It's a short note that I make about someone else's content online. Learn more about the process here

Here's my thought on 💭 google chrome - Webkit scrollbar CSS, always a white box in corner - Stack Overflow


This is how you fix the stupid corner section of a double scroll bar being white on a dark theme site.


::-webkit-scrollbar-corner {
  background: rgba(0,0,0,0);
}

The question included an example image where you can see white squares everywhere there are horizontal and vertical scroll bars.

the corner


This post was a thought by Waylon Walker see all my thoughts at https://waylonwalker.com/thoughts