Please note, this is a STATIC archive of website developer.mozilla.org from 03 Nov 2016, cach3.com does not collect or store any user information, there is no "phishing" involved.

<frameset>

这篇翻译不完整。请帮忙从英语翻译这篇文章

已废弃
该特性已经从 Web 标准中删除,虽然一些浏览器目前仍然支持它,但也许会在未来的某个时间停止支持,请尽量不要使用该特性。

概述

<frameset>是一个HTML元素,用来包裹同是HTML元素的<frame>元素。

注意: 因为现在框架的使用都推荐使用<iframe>元素, 所以现代网站通常都不使用<frameset>元素。

属性

像所有其他的HTML元素一样,这个元素支持全局属性

cols
这个属性指定一个框架集中列的数目和尺寸。
rows
这个属性指定一个框架集中行的数目和尺寸。

例子

<frameset cols="50%,50%">
  <frame src="https://developer.mozilla.org/en/HTML/Element/frameset" />
  <frame src="https://developer.mozilla.org/en/HTML/Element/frame" />
</frameset>

参见

文档标签和贡献者

 此页面的贡献者: Fogwind
 最后编辑者: Fogwind,