100%宽度视频和500px高度

时间:2015-04-06 01:49:48

标签: css video

我需要设置100%宽度的视频和500px的高度。这有什么机会吗?我检查了这个网站上的帖子,发现只有100%背景的代码:

#video_background {
                position: fixed;
                top: 0px;
                left: 0px;
                min-width: 100%;
                min-height: 100%;
                width: auto;
                height: auto;
                z-index: -1000;
                background: url(assets/picture.jpg) no-repeat;
                background-size: cover;
                overflow: hidden;
                }

1 个答案:

答案 0 :(得分:0)

这是一篇很好解释的文章。

https://css-tricks.com/NetMag/FluidWidthVideo/Article-FluidWidthVideo.php

您可以设置<video width="100%" ...或设置CSS集

#video_background{
  width: 100%    !important;
  height: auto   !important;
}