I'm currently working on customizing the scrollbar for my Chrome App using CSS and I have encountered an issue with rule #2:
section { overflow: auto }
section::-webkit-scrollbar {
width: 5px ;
}
Oddly enough, when I apply the second rule, Chrome fails to display the scrollbar. However, without the second rule, the default scrollbar appears as expected.
Is this a common occurrence? I've searched through the documentation but haven't found any information on this particular behavior...