此页面由社区从英文翻译而来。了解更多并加入 MDN Web Docs 社区。

View in English Always switch to English

<frameset>

Deprecated

Avoid using this feature in new projects. This feature may be a candidate for removal from web standards or browsers.

概述

<frameset> 是一个用于包含 <frame> 的 HTML 元素。

备注:现在不鼓励使用 frame,而是用<iframe>。现今的网站一般都不使用 frame。

属性

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

cols

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

rows

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

例子

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

Browser compatibility

参见