嵌入 YouTube IFrame 响应式

use*_*174 6 html youtube responsive-design

我在 Magento 网站上嵌入了带有以下链接的 YouTube 视频(Magento 不是很重要,除非有一个我不知道的插件)

<iframe width="640" height="360" src="http://www.youtube.com/embed/Zq-805aUM7M?feature=player_embedded" frameborder="0" allowfullscreen></iframe>
Run Code Online (Sandbox Code Playgroud)

我不相信这段代码是好的,因为它没有响应。我该如何解决?

Jos*_*ens 8

试试这种纯粹的css方式:

iframe, object, embed {
        max-width: 100%;
        max-height: 100%;
}
Run Code Online (Sandbox Code Playgroud)

如果那不起作用试试这个

https://benmarshall.me/responsive-iframes/