LoginSignup
1
0

More than 1 year has passed since last update.

【Y】Youtube埋め込みをレスポンシブなサイトに埋め込む

Last updated at Posted at 2022-12-24

Youtubeからコピーしたものをそのまま書いたらwidth属性のせいではみだしたりするんですよね

結論

周りをdivで囲んでaspect-ratio使うとなんとかなります

example.html
<div style="width:100%;aspect-ratio:16/9">
    <iframe style="width:100%;height:100%;" width="1920" height="1080" src="https://www.youtube.com/embed/XXXXXXXXXXX" title="YouTube video player" frameborder="0" allow="accelerometer; autoplay; clipboard-write; encrypted-media; gyroscope; picture-in-picture" allowfullscreen></iframe>
</div>

Youtubeに限らず、iframeに汎用的に使えるはず。

1
0
0

Register as a new user and use Qiita more conveniently

  1. You get articles that match your needs
  2. You can efficiently read back useful information
  3. You can use dark theme
What you can do with signing up
1
0