I need to create a horizontal scrollbar that will control a the scrolling inside an horizontal DIV.
I can't use the regular OVERFLOW:AUTO CSS since the scrollbar is visually separate from the div. There are some (static) items between the scroll and the DIV.
I thought of using POSITION:FIXED for those items, and keep them inside the scrolling DIV. But it looks like FIXED position is only relative to the window and not the current container.
I know I can probably write some jQuery script to handle the scroll events and move the content in the DIV. Any way to achieve this with CSS or existing jQuery plugin?