How to center a (background) image within a div?

后端 未结 9 1762
迷失自我
迷失自我 2020-11-29 17:57

Is it possible to center a background image in a div? I have tried just about everything - but no success:

Lorem Ipsum ...
9条回答
  •  感动是毒
    2020-11-29 18:28

    This works for me for aligning the image to center of div.

    .yourclass {
      background-image: url(image.png);
      background-position: center;
      background-size: cover;
      background-repeat: no-repeat;
    }
    

提交回复
热议问题