How can I make HTML 5 video playback fit to frame instead of maintaining aspect ratio?

后端 未结 6 1670
渐次进展
渐次进展 2021-02-03 11:14

I\'ve been experimenting with HTML5 video playback. For example I have this video object embedded on my page:

6条回答
  •  难免孤独
    2021-02-03 11:47

    If you want the video to fill the entire frame AND maintain its aspect ratio, use the following:

    video
    {
      object-fit: cover;
      height: 100%;
      width: 100%;
    }
    

提交回复
热议问题