Given this div:
div
How can I make the scrollbars visible only when the mouse is
Try selecting the div with :hover selector
:hover
#div { overflow: hidden; } #div:hover { overflow:visible; }