center image in a div

前端 未结 3 1952
天涯浪人
天涯浪人 2020-12-07 05:36

I\'m trying to center horizontally an image in a div, and i don\'t understand why it isn\'t working... I\'ve centered images so many times, and this time i just don\'t under

3条回答
  •  孤街浪徒
    2020-12-07 05:41

    Check the below code, I hope it will helps you.

    .wrap{
      position: relative;
      height: 100vh;
      width: 100vw;
    }
    .midImg{
      margin: auto;  
      position: absolute;
      left:0;
      right: 0;
      top: 0;
      bottom: 0;
      height: 150px;
      width: 150px;
    }  
    av61

提交回复
热议问题