Place an image at the top of a DIV and center it

前端 未结 6 1394
再見小時候
再見小時候 2021-01-24 08:53

I have 2 containers, one grey, one white. I\'d like to place an image (this will be a triangle down) to the very top of the white background and center it horizontally. How coul

6条回答
  •  北海茫月
    2021-01-24 09:26

    margin:auto only works on block elements.

    .triangle {
      margin: auto;
      margin-top: -80px;
      display: block;
    }
    

    (Your declarations for margin-left and -right are superfluous, since you are overwriting them with margin: auto on the next line anyway.)

提交回复
热议问题