How to get a drop-down menu to overlay other elements

后端 未结 3 1342

I am creating a little website and I can\'t get the drop-down menu, which comes out of the \"gallery\" button when I hover on it, to overlay the paragraph below the menu ins

3条回答
  •  梦毁少年i
    2021-01-03 08:48

    You need to set your .menu-item a relative position

    position: relative;
    

    and now you can set your ul to absolute position without messing up your layout.

    Here's an updated version of your fiddle

提交回复
热议问题