我希望将服务器端视频设置为div的背景。我希望文本(h1)位于其上方。有没有办法让视频完全填满div并隐藏溢出/响应? div是100%宽度和设定高度。
提前致谢。
答案 0 :(得分:1)
<div class="wrapper">
<video class="videoInsert" controls autoplay>
<source src="demo.mp4" type="video/mp4">
<source src="movie.ogg" type="video/ogg">Your browser does not support the video tag.
</video>
<div class="video">
<h1>text here </h1>
</div>
</div>