gpt4 book ai didi

css - html5的视频标签后的空格

转载 作者:太空狗 更新时间:2023-10-29 13:56:16 26 4
gpt4 key购买 nike

我有一个 html5 的视频标签,视频和它的容器 div 元素之间似乎有一个 5px 空间

如果我将 font-size: 0 放在容器元素 (#video-container) 中,空格就会消失。

我知道这是 display: inline-block 的问题,但我没有相关元素。

另外,试过在前一个关闭后打开标签的解决方案,并没有删除空间。

http://jsfiddle.net/g9t71mg6/

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

#wrapper {
width: 100%;
height: 100%;
}

#video-container {
overflow: hidden;
width: 100%;
background: #2c5894;
}

#video-container video {
width: 100%;
}

#turnera-container {
float: right;
width: 250px;
vertical-align: top;
height: 100%;
}

.turno-wrapper {
height: 25%;
display: table;
width: 100%;
}

.turno-wrapper {
background: #727867;
}

.turno {
border: dashed 1px #FFFFFF;
display: table-cell;
text-align: center;
vertical-align: middle;
}

.turno .numero {
font-size: 50px;
font-family: Arial, Helvetica, sans-serif;
font-weight: bold;
color: #FFF;
}

.turno .box {
font-size: 30px;
font-family: Arial, Helvetica, sans-serif;
font-weight: bold;
color: #FFF;
}

#contenido-principal {
overflow: hidden;
height: 100%;
/*margin-right: 250px;*/
}

#footer {
background-color: #dc001e;
height: 100%;
width: auto;
border: dashed 1px #FFFFFF;
}

#rss-container {
height: 240px;
font-size: 12px;
}

.turno-asignado-historia0 {
background: #00bc24;
}

.turno-asignado-historia0 .numero {
font-size: 65px;
}

.turno-asignado-historia0 .box {
font-size: 40px;
}

.turno-asignado-historia1 {
background: #739461;
}

.turno-asignado-historia2 {
background: #546947;
}

.turno-asignado-historia3 {
background: #34422e;
}

<div id="wrapper">
<div id="turnera-container">
<div class="turno-wrapper turno-asignado-historia0">
<div class="turno">
</div>
</div>
<div class="turno-wrapper turno-asignado-historia1">
<div class="turno">
</div>
</div>
<div class="turno-wrapper turno-asignado-historia2">
<div class="turno">
</div>
</div>
<div class="turno-wrapper turno-asignado-historia3">
<div class="turno">
</div>
</div>
</div>
<div id="contenido-principal">
<div id="video-container">
<video autoplay loop="loop">
<source src="http://awakenvideo.org/video/UFOs/NVofu001.mp4" type="video/mp4">
</video>
</div>
<div id="footer">
<div id="rss-container">
</div>
</div>
</div>
</div>

最佳答案

只需将 display: block 添加到 video 元素即可。 video 元素默认为 display: inline,导致空白。

更新 fiddle :http://jsfiddle.net/g9t71mg6/1/

关于css - html5的视频标签后的空格,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/26979003/

26 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com