如何将视频标记定位在固定位置?

时间:2016-12-06 08:22:56

标签: html html5

我有以下视频标记:

<video width="640" height="480" controls id="mainVideo" name="mainVideo">
  <source src="video.mp4" type="video/mp4">
Your browser does not support the video tag.
</video>

我希望将它放在浏览器屏幕的右上角,无论窗口滚动的位置如何(意味着视频保持在顶部)。

1 个答案:

答案 0 :(得分:1)

试试这个......

#mainVideo{
  position:fixed;
  right:0;
  top:0;
  }