After applying the CSS below, a div
I have now has a scrollbar. The issue is that even when scrolling isn't necessary, the bar still appears empty. Is there a method to only display the scrollbar if the content overflows? Any suggestions would be appreciated.
#id{
overflow: -moz-scrollbars-vertical;
overflow-x: hidden;
overflow-y: scroll;
}