Answers for "html5 video fit width"

0

html5 video fit width

video {
  object-fit: cover;
}
Posted by: Guest on June-04-2021
0

html5 video fit width

.videoContainer
{
   position:absolute;
   height:100%;
   width:100%;
    overflow: hidden;
}

.videoContainer video
{
  min-width: 100%;
  min-height: 100%;
}
Posted by: Guest on June-04-2021
0

html5 video fit width

<div class="videoContainer">
   <video id="video" width="100%" height="auto" onclick="playPause();"></video>
</div>
Posted by: Guest on June-04-2021

Browse Popular Code Answers by Language