LoginSignup
9
5

More than 5 years have passed since last update.

HTMLを入れ子にするiframeタグの使い方

Posted at

フレームとは

HTMLのフレームとはHTMLを2つ以上に分割し、指定した領域に表示させる機能。
HTML4時代は<frame>,<frameset>,<noframes>などのタグがあったがHTML5には<iframe>のみが生き残った。

iframeの使い方

iframeには別ファイルに定義されたhtmlを表示する方法とiframeタグ内部に直接入力されたhtmlを表示する方法がある。

別ファイルのhtmlを表示

iframeタグのsrc属性にファイルのURLを入力する。

別ファイルのhtmlを表示
<iframe src="iframe_src.html"></iframe>
iframe_src.html
<p>srcはファイルのURLを入力</p>

直接htmlを入力

srcdoc属性にhtmlを入力する

htmlを直接入力して表示
<iframe srcdoc="<p>srcdocは直接htmlを入力</p>"></iframe>

デモ

参考

http://honttoni.blog74.fc2.com/blog-entry-175.html

9
5
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
9
5