HTML中视频标记的问题

时间:2016-11-15 23:42:50

标签: html css web

我正在制作的网页上有几个视频,上面有一个固定的div,当我向下滚动页面时,视频标签的控制栏可以通过固定的div看到。{{1} }

这是固定的div css

<video width="560 height="315" controls="true">
<source src="video.mp4" type="video/mp4" />
</video>

The play bar is visible through the fixed div, which is the brick with the text

1 个答案:

答案 0 :(得分:2)

尝试将固定div设置为z-index为999。

.info {
z-index: 999 ;
}

z-index属性指定元素的堆栈顺序。堆栈顺序较大的元素始终位于堆栈顺序较低的元素前面。