Make scrollbars only visible when a Div is hovered over?

后端 未结 10 2029
庸人自扰
庸人自扰 2020-12-02 15:04

I am trying to figure out how to have a scrollable div that only shows its scrollbars when Hovered.

Example is Google Image search, in the image below you can see

10条回答
  •  难免孤独
    2020-12-02 16:01

    This will work:

    #div{
         max-height:300px;
         overflow:hidden;
    }
    #div:hover{
         overflow-y:scroll;
    }
    

提交回复
热议问题