目次

iframe

各オプション

frameborder

<iframe src="http://www.sample.com"
    frameborder="0" // 表示しない
    frameborder="1" // 表示する
></iframe>

allowfullscreen

<iframe src="http://www.sample.com" allowfullscreen></iframe>

allow

<iframe width="xxx" height="yyy"
src="https://www.youtube.com/hoge/ZZZZZ" 
frameborder="0" allow="autoplay; encrypted-media" allowfullscreen>
</iframe>

参考