Stacking DIVs on top of each other?

前端 未结 9 2266
暗喜
暗喜 2020-12-02 07:59

Is it possible to stack up multiple DIVs like:

&l
9条回答
  •  無奈伤痛
    2020-12-02 08:36

    I positioned the divs slightly offset, so that you can see it at work.
    HTML

    BOT
    TOP

    CSS

    .outer {
      position: relative;
      margin-top: 20px;
    }
    
    .top {
      position: absolute;
      margin-top: -10px;
      background-color: green;
    }
    
    .bot {
      position: absolute;
      background-color: yellow;
    }
    

    https://codepen.io/anon/pen/EXxKzP

提交回复
热议问题