Showing scrollbars only when mouseover div

后端 未结 6 1982
猫巷女王i
猫巷女王i 2020-12-31 02:22

Given this div:

How can I make the scrollbars visible only when the mouse is

6条回答
  •  春和景丽
    2020-12-31 03:02

    Try selecting the div with :hover selector

    #div { overflow: hidden; }
    
    #div:hover { overflow:visible; }
    

提交回复
热议问题