Fullscreen background video and keep it centered

前端 未结 4 446
梦谈多话
梦谈多话 2021-01-11 17:13

I\'m trying to create a site where I have a background video playing with some HTML5. This is all working perfectly, it works just the way I want it. But I also want to keep

4条回答
  •  小蘑菇
    小蘑菇 (楼主)
    2021-01-11 17:35

    Use Css Property. object-fit: cover;

    body, html {
      padding: 0;
      margin: 0;
      height: 100%;
      width: 100%;
    }
    
    video {
      height: 100%;
      width: 100%;
    }

提交回复
热议问题