视频不是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%;
}
答案 0 :(得分:0)
您需要设置视频的最大宽度。您可以将最大宽度和最小宽度组合为宽度,并将高度相同。试试这段代码
section video{
position: absolute;
top: 0;
left: 0;
width: 100%;
height: 100%;
}