noframes要素 フレーム未対応の通知 (alternate content container for non frame-based rendering)

 
ブロック要素
ホーム > HTML Note > noframes要素
H4-x1 ie3- N2-

説明

<noframes>-</noframes> 開始タグ:必須 終了タグ:必須
noframes要素は、フレームに対応していないブラウザに表示される代替テキストを指定するのに用います。フレーム未対応のブラウザには<noframes>-</noframes>の間の記述が表示されます。
 

属性 (W3C)

<noframesH4-x1 ie3- N2-
一般属性 id class style title lang dir %events;
>(body) -(noframes)</noframes>

使用例

noframe要素はframeset要素の要素内容に記述します。フレームに対応していないブラウザのためのメッセージを記述します。

frameset要素の要素内容に配置
<html>
<head>
<title>タイトル</title>
</head>

<frameset cols="150,*">
  <frame src="menu.htm" name="menu">
  <frame src="cont.htm" name="contents">
  <noframes>
  <body>
  フレーム対応ブラウザでご覧ください。
  </body>
  </noframes>
</frameset>
</html>
 
関連要素: frameset>frame | iframe | noframes
トップページ HTML Note ページトップ
 2003/06/22発行 2008/01/01更新