When creating a webpage with a video background, I include the following code:
position: fixed;
top: 0;
left: 0;
width: 100%;
height: 100%;
object-fit: cover;
background: url(images/bg/home.jpg) no-repeat;
background-size: cover;
This code works well on Safari, Chrome, Firefox, and Opera. However, Internet Explorer does not support "object-fit: cover," which means it doesn't completely fill the screen. I have tried various solutions from different sources, including Stack Overflow, but none of them seem to work. - What should I do next?