如何在Internet Explorer中移除视频边框?

时间:2017-06-17 19:52:53

标签: html css html5 css3 internet-explorer

如何在Internet Explorer中删除标记周围的黑色边框?我尝试过更改背景颜色,添加边框:无,但这些都没有效果。

<video id="hsense-video" class="hidden-sm hidden-xs" autoplay loop muted poster="video/hsense-poster.jpg">
    <source type="video/mp4" src="video/hsense-video.mp4" />
</video>

2 个答案:

答案 0 :(得分:0)

你试过!important吗?

&#13;
&#13;
video {
  border-style: none !important;
}
&#13;
<video id="hsense-video" class="hidden-sm hidden-xs" autoplay loop muted poster="video/hsense-poster.jpg">
     <source src="https://www.w3schools.com/html/mov_bbb.mp4" type="video/mp4">
</video>
&#13;
&#13;
&#13;

答案 1 :(得分:0)

我刚刚在Codepen IE浏览器中检查过它并且没有边框。还制作了带有视频的html页面,并在IE 11中进行了检查 - &gt;无边界! https://codepen.io/DannaB67/pen/GErxgx

<video id="hsense-video" class="hidden-sm hidden-xs" autoplay loop muted poster="video/hsense-poster.jpg">
     <source src="https://www.w3schools.com/html/mov_bbb.mp4" type="video/mp4">
</video>