Css background video

前端 未结 4 1613
梦谈多话
梦谈多话 2020-12-28 10:43

Does someone know how to center this video background?

I tried:

margin: 0 auto;
text-align: center;

So far but none of these worked

4条回答
  •  攒了一身酷
    2020-12-28 11:23

    In modern browsers, you can manipulate object-fit and do this without the container.

    video.bg {
      position: absolute;
      top: 0;
      left: 0;
      z-index: -100;
      width: 100%;
      height: 100%;
      object-fit: cover;
    }
    

提交回复
热议问题