英 [freɪm]   美 [frem]  

n.框架;边框;眼镜框;组织

vt.陷害;设计;表达;使适合(某一特殊用途)

adj.有木架的,有构架的

第三人称单数: frames 复数: frames 现在分词: framing 过去式: framed 过去分词: framed

html frame标签 语法

作用:定义 frameset 中的一个特定的窗口(框架)。

说明:frameset 中的每个框架都可以设置不同的属性,比如 border、scrolling、noresize 等等。

注释:如果您希望验证包含框架的页面,请确保 doctype 被设置为 "Frameset DTD"。您不能与 <frameset></frameset> 标签一起使用 <body></body> 标签。不过,如果您需要为不支持框架的浏览器添加一个 <noframes> 标签,请务必将此标签放置在 <body></body> 标签中!

html frame标签 示例

<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">

</frameset>

</html>

热门推荐