How to make scrollbars visible only when a Div is hovered? Any sample code would be helpful?
div { overflow:hidden;height:whatever px; } div:hover { overflow-y:scroll; }
OR
Use overflow: auto. Scrollbars will only appear when needed.
overflow: auto
(Sidenote, you can also specify for only the x, or y scrollbar: overflow-x: auto and overflow-y: auto).
overflow-x: auto
overflow-y: auto
Please provide any sample codes..
I want to add a menu to my application screens. The menu will have the menu icons which are horizontal scroll-able one menu at a time when left or right arrow pressed.