gpt4 book ai didi

html - 视频标签占用整个浏览器空间

转载 作者:可可西里 更新时间:2023-11-01 13:05:32 26 4
gpt4 key购买 nike

我试图让我的视频在我进入页面时占据整个浏览器大小。但是我看到了下一个 <div>

enter image description here

这是该页面的 HTML:

enter image description here

这是 video-containter 的 CSS :

.video-container {
position: relative;
min-width: 100%;
min-height: 100%;
width: auto;
height: auto;
z-index: -100;
background: no-repeat;
background-size: cover;
}

<section>class="index"什么都不包含:

.index {

}

最佳答案

您尝试使用 vwvh 吗?

.video-container {
width: 100vw;
height: 100vh;
object-fit: cover;
position: relative;
background: no-repeat;
background-size: cover;
}
  • vh(视口(viewport)高度)
  • vw(视口(viewport)宽度)

关于html - 视频标签占用整个浏览器空间,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/33689093/

26 4 0