Possible Duplicate:
Facebook's horizontal scrollbar in ticker & chat sidebar
I am implementing a div with inner content as overflow-y: auto. But I need to change the style of the scrollbar and make it similar to Facebook chat scrollbar style.
Code:
<div style='overflow-y: auto; overflow-x:hidden;'>
<div id='divInner1'>Some Content</div>
<div id='divInner2'>Some Content</div>
<div id='divInner3'>Some Content</div>
<div id='divInner4'>Some Content</div>
<div id='divInner5'>Some Content</div>
</div>
How can I style scrollbar vertical for the outermost div with styling same as that of facebook?