我正在尝试添加流畅的视频 从我在这里读到的
https://css-tricks.com/NetMag/FluidWidthVideo/Article-FluidWidthVideo.php
我正在定义
.video-container {
position: relative;
padding-bottom: 56.25%; /* 16:9 */
height: 0;
> iframe {
position: absolute;
top: 0;
left: 0;
width: 100%;
height: 100%;
}
}
和我的HTML
<div class="video-container" style="padding-top:25px; width:720px">
<iframe src="//fast.wistia.net/embed/iframe/xxxx?
videoFoam=true" allowtransparency="true" frameborder="0"
scrolling="no" class="wistia_embed" name="wistia_embed"
allowfullscreen="" mozallowfullscreen="" webkitallowfullscreen=""
oallowfullscreen="" msallowfullscreen="" width="720"></iframe>
视频宽度根据视频容器宽度而变化,但它在顶部和按钮上显示黑色填充。如何删除那些黑色填充。
答案 0 :(得分:0)
您是否尝试在HTML中删除它:
style="padding-top:25px; width:720px"
我在我的网页上使用相同的解决方案,它工作得很好。