Hacker News new | ask | show | jobs
by alanh 3731 days ago
I think there is CSS that can make your scrollbars actually visible
2 comments

::-webkit-scrollbar { width: 1em; }
It just reserve space for the scrollbar but doesn't make them appear
div.mydiv { overflow-y: scroll; }