この埋め込みロードを200pxのiframeに、モバイル画面用に140pxの高さに読み込もうとしています。メディアクエリによるiframeの高さの設定
<!DOCTYPE html>
<html>
<style type="text/css">
@media only screen and (max-device-width: 480px) {
.iframe {
height:140px;
}
}
</style>
<body style="margin:0px">
<iframe width="100%" height="200" src="https://www.youtube.com/embed/FtveSk1N7Uo?enablejsapi=1&origin=http://domain.com&autoplay=1" frameborder="0" allowfullscreen></iframe>
</body>
</html>
インラインスタイル(IFRAMEのheight="200"
)は、任意の他のスタイルよりも優先されますので、これはそれが働いていない