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

后端 未结 9 1760
迷失自我
迷失自我 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:24

    This works for me:

    .network-connections-icon {
      background-image: url(url);
      background-size: 100%;
      width: 56px;
      height: 56px;
      margin: 0 auto;
    }
    

提交回复
热议问题