How I can overlap a DIV on to other DIV?

后端 未结 3 757
梦如初夏
梦如初夏 2021-01-26 04:16

I am trying to make an overlapping a DIV onto other visually . I am trying

{
position:absolute;
top:-10px;
}

in css, but I found that this top

3条回答
  •  甜味超标
    2021-01-26 04:32

    Just use position: relative instead of absolute, or add a negative margin-top: -10px instead.

提交回复
热议问题