I would like to create a div that can scroll, but does not display scrollbars. I found a solution for Webkit (below), but how can this be done in other browsers?
I would prefer not to use the javascript plugin. Hope to find a CSS or vendor specific solution.
Webkit Solution
#photoreel::-webkit-scrollbar { height: 0; width: 0; } #photoreel { overflow-x: scroll; overflow-y: hidden; }
css firefox scrollbar
Matt Apr 28 '11 at 2:35 a.m. 2011-04-28 14:35
source share