How to overlay one div over another div

前端 未结 9 1871
旧时难觅i
旧时难觅i 2020-11-21 17:39

I need assistance with overlaying one individual div over another individual div.

My code looks like this:

9条回答
  •  孤独总比滥情好
    2020-11-21 18:03

    By using a div with style z-index:1; and position: absolute; you can overlay your div on any other div.

    z-index determines the order in which divs 'stack'. A div with a higher z-index will appear in front of a div with a lower z-index. Note that this property only works with positioned elements.

提交回复
热议问题