如果你能做到这样:
<div class="videoWrapper">
<iframe width="600" height="338" src="https://www.youtube.com/embed/f5CcOq8UzkI?feature=oembed" frameborder="0" allowfullscreen=""></iframe>
</div>
然后,对此做出响应的css如下所示:
.videoWrapper {
position: relative;
padding-bottom: 56.25%; /* 16:9 */
padding-top: 25px;
height: 0;
}
.videoWrapper iframe {
position: absolute;
top: 0;
left: 0;
width: 100%;
height: 100%;
}
如果您对标记没有控制权,那么我们可以做的是在编辑器中放置该短代码时,在其周围添加一些div,如下所示:
<div class="videoWrapper">
[embed width="600" height="456"]https://www.youtube.com/watch?v=f5CcOq8UzkI[/embed]
</div>