html5视频元素1px白色底部边框上的铬

时间:2016-11-04 21:56:31

标签: html5 google-chrome html5-video

出于某种原因,我在Chrome视频容器元素的底部出现了一个白色的底部边框。

<video id="cover" src="video.mp4" autoplay="" loop=""></video>

有谁知道如何解决这个问题?

这是video元素的计算样式。

background-color:rgb(0, 0, 0);
border-bottom-color:rgb(0, 0, 0);
border-bottom-style:none;
border-bottom-width:0px;
border-image-outset:0px;
border-image-repeat:stretch;
border-image-slice:100%;
border-image-source:none;
border-image-width:1;
border-left-color:rgb(0, 0, 0);
border-left-style:none;
border-left-width:0px;
border-right-color:rgb(0, 0, 0);
border-right-style:none;
border-right-width:0px;
border-top-color:rgb(0, 0, 0);
border-top-style:none;
border-top-width:0px;
display:inline-block;
font-family:Times;
font-size:16px;
font-stretch:normal;
font-style:normal;
font-variant-caps:normal;
font-variant-ligatures:normal;
font-variant-numeric:normal;
font-weight:normal;
height:798.547px;
line-height:16px;
margin-bottom:0px;
margin-left:0px;
margin-right:0px;
margin-top:0px;
object-fit:contain;
opacity:1;
padding-bottom:0px;
padding-left:0px;
padding-right:0px;
padding-top:0px;
vertical-align:baseline;
width:1680px;

4 个答案:

答案 0 :(得分:1)

对我来说,问题出在外面。将其设置为none可以解决该问题:

video {
   outline: none;
}

答案 1 :(得分:0)

聚会晚了一点,但这是一个对我有用的小巧的技巧:

video {
  margin-bottom: -1px;
}

答案 2 :(得分:0)

在我的情况下是line-height。我将其设置为0,此“边界底部”消失了。

答案 3 :(得分:0)

就我而言,问题是包装大小。刚刚添加

-webkit-box-sizing: unset;
-moz-box-sizing: unset;
box-sizing: unset;

到父容器,边框消失。