2016年6月4日土曜日

Youtube動画埋め込みを最大サイズ指定しつつレスポンシブにする (インラインスタイルver)

よくあるやつなんですけど、インラインで style 指定してしまうやつのメモです。良い子はマネしちゃいけません。

<div style="max-width:560px">
  <div style="position:relative; width:100%; padding-top:56.25%;">
    <iframe style="position:absolute; top:0; left:0; width:100%; height:100%;"  src="https://www.youtube.com/embed/CmRih_VtVAs" frameborder="0" allowfullscreen=""></iframe>
  </div>
</div>