视频的完整视频背景高度超过100%;

时间:2016-01-06 04:34:37

标签: html css html5 css3 html5-video

视频不是100%完全延伸超过100%?我使用绝对定位但视频的高度约为110%而不是100%?

html, body {
          width: 100%;
          height: 100%;
          margin: 0;
          padding: 0; }

        section {
          width: 100%;
          height: 100%; 
        }

        section video {
          position: absolute;
          top: 0;
          left: 0;
          min-width: 100%;
          min-height: 100%;
        }

1 个答案:

答案 0 :(得分:0)

您需要设置视频的最大宽度。您可以将最大宽度和最小宽度组合为宽度,并将高度相同。试试这段代码

section video{
   position: absolute;
   top: 0;
   left: 0;
   width: 100%;
   height: 100%;
}