我正在设计一个在100%宽度容器中使用自托管背景视频的网站.在Chrome和Firefox中完美运行但在IE中失败(在IE 11中测试).
视频应该在宽度方向上拉伸以填充容器 - 保持视频比例,但是,IE只是将视频放在容器中,其大小必须垂直填充容器.
链接到有错误的页面
/*you can use this css.*/ .fullwidth-video { position: absolute; top: 0; left: 0; z-index: 1; min-height: 100%; min-width: 100%; -webkit-transform-style: preserve-3d; } .fullwidth-video video { position: absolute; top: 0; left: 0; z-index: 1; min-height: 100%; min-width: 100%; height: auto; width: 100%; object-fit: cover; }
这里的HTML代码......