Video 100% width and height

后端 未结 13 2016
Happy的楠姐
Happy的楠姐 2020-12-08 06:37

I have a video, and I want it to FILL 100% of the width, and 100% of the height. And keep the aspect ratio.

Is it possible that it at least fills 100% for both? And

13条回答
  •  南笙
    南笙 (楼主)
    2020-12-08 07:07

    Easiest & Responsive.

    
      
    
    video {
      height: 100vh;
      width: 100%;
      object-fit: fill;
      position: absolute;
    }
    

提交回复
热议问题