我在Prestashop中包含视频时遇到问题!
这是我用来包含视频的代码:
<div class="videoWrapper">
<iframe width="640" height="360" src="https://www.youtube.com/embed/3G1PFLuTrgM" frameborder="0" allowfullscreen></iframe>
</div>
CSS:
.videoWrapper {
position: relative;
padding-bottom: 56.25%; /* 16:9 */
padding-top: 25px;
height: auto !important;
}
.videoWrapper iframe {
position: absolute;
top: 0;
left: 0;
width: 100%;
height: 100%;
}
但是根本不工作!
任何人都知道我该怎么办?
谢谢!
答案 0 :(得分:1)
更改默认的内联宽度和高度:
<div class="videoWrapper col-md-12">
<iframe width="100%" height="450" src="https://www.youtube.com/embed/3G1PFLuTrgM" frameborder="0" allowfullscreen></iframe>
</div>
&#13;
使用Bootstrap非常有用,尝试使用CSS为iframe添加高度(或保持默认值)