How to overlay one div over another div

前端 未结 9 1879
旧时难觅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:15

    #container {
      width: 100px;
      height: 100px;
      position: relative;
    }
    #navi,
    #infoi {
      width: 100%;
      height: 100%;
      position: absolute;
      top: 0;
      left: 0;
    }
    #infoi {
      z-index: 10;
    }
    b

    I would suggest learning about position: relative and child elements with position: absolute.

提交回复
热议问题