diff options
author | Peter Bengtsson <mail@peterbe.com> | 2020-12-08 14:40:17 -0500 |
---|---|---|
committer | Peter Bengtsson <mail@peterbe.com> | 2020-12-08 14:40:17 -0500 |
commit | 33058f2b292b3a581333bdfb21b8f671898c5060 (patch) | |
tree | 51c3e392513ec574331b2d3f85c394445ea803c6 /files/zh-cn/web/html/element/frame | |
parent | 8b66d724f7caf0157093fb09cfec8fbd0c6ad50a (diff) | |
download | translated-content-33058f2b292b3a581333bdfb21b8f671898c5060.tar.gz translated-content-33058f2b292b3a581333bdfb21b8f671898c5060.tar.bz2 translated-content-33058f2b292b3a581333bdfb21b8f671898c5060.zip |
initial commit
Diffstat (limited to 'files/zh-cn/web/html/element/frame')
-rw-r--r-- | files/zh-cn/web/html/element/frame/index.html | 50 |
1 files changed, 50 insertions, 0 deletions
diff --git a/files/zh-cn/web/html/element/frame/index.html b/files/zh-cn/web/html/element/frame/index.html new file mode 100644 index 0000000000..3b72727464 --- /dev/null +++ b/files/zh-cn/web/html/element/frame/index.html @@ -0,0 +1,50 @@ +--- +title: <frame> +slug: Web/HTML/Element/frame +translation_of: Web/HTML/Element/frame +--- +<div>{{Deprecated_header}}</div> + +<h2 id="概述">概述</h2> + +<p><code><frame></code> 是 HTML 元素,它定义了一个特定区域,另一个 HTML 文档可以在里面展示。帧应该在 {{HTMLElement("frameset")}} 中使用。</p> + +<p><code><frame> </code>的使用不应提倡,因为有一些缺点,比如性能问题,以及使用屏幕阅读器的用户缺少可访问性。比起 <code><frame></code>,{{HTMLElement("iframe")}} 更应该提倡。</p> + +<h2 id="属性">属性</h2> + +<p>就像其他 HTML 元素一样,这个元素支持 <a href="/en-US/docs/HTML/Global_attributes" title="HTML/Global attributes">全局属性</a>。</p> + +<dl> + <dt>{{htmlattrdef("src")}}</dt> + <dd> 这个属性指定了由帧展示的文档。</dd> + <dt>{{htmlattrdef("name")}}</dt> + <dd>这个属性用于给帧添加标签。如果没有标签,所有链接都会在它们所在的帧中打开。</dd> + <dt>{{htmlattrdef("noresize")}}</dt> + <dd>这个属性避免让用户改变帧的大小。</dd> + <dt>{{htmlattrdef("scrolling")}}</dt> + <dd>这个属性定义了滚动条的存在。如果不使用这个属性,浏览器会按需放置滚动条。有两个选择:<code>"yes"</code> 用于展示滚动条,即使是多余的;<code>"no"</code> 用于不展示滚动条,即使它是必要的。</dd> + <dt>{{htmlattrdef("marginheight")}}</dt> + <dd>这个属性定义了帧之间的边距有多高。</dd> + <dt>{{htmlattrdef("marginwidth")}}</dt> + <dd>这个属性定义了帧之间的边距有多宽。</dd> + <dt>{{htmlattrdef("frameborder")}}</dt> + <dd>这个属性允许你为帧添加边框。</dd> +</dl> + +<h2 id="示例">示例</h2> + +<pre class="brush: html"><frameset cols="50%,50%"> + <frame src="https://developer.mozilla.org/en/HTML/Element/iframe" /> + <frame src="https://developer.mozilla.org/en/HTML/Element/frame" /> +</frameset> +</pre> + +<h2 id="另见">另见</h2> + +<ul> + <li>{{HTMLElement("frameset")}}</li> + <li>{{HTMLElement("iframe")}}</li> +</ul> + +<p>{{HTMLRef}}</p> |