html noframes tag


  Translation results:

UK [freɪmz] US [freɪmz]

n. border; frame (plural noun of frame); glasses frame; organization

html noframes tagsyntax

Function: The element can display text for browsers that do not support frames.

Description: The noframes element is located inside the frameset element.

Note: If the browser has the ability to handle frames, the text in the frameset element will not be displayed.

html noframes tagexample

<html>

<frameset cols="25%,50%,25%">
  <frame src="http://www.php.cn/example/html/frame_a.html">
  <frame src="http://www.php.cn/example/html/frame_b.html">
  <frame src="http://www.php.cn/example/html/frame_c.html">

<noframes>
<body>您的浏览器无法处理框架!</body>
</noframes>

</frameset>

</html>

Home

Videos

Q&A