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/spacer | |
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/spacer')
-rw-r--r-- | files/zh-cn/web/html/element/spacer/index.html | 41 |
1 files changed, 41 insertions, 0 deletions
diff --git a/files/zh-cn/web/html/element/spacer/index.html b/files/zh-cn/web/html/element/spacer/index.html new file mode 100644 index 0000000000..6550598409 --- /dev/null +++ b/files/zh-cn/web/html/element/spacer/index.html @@ -0,0 +1,41 @@ +--- +title: <spacer> +slug: Web/HTML/Element/spacer +translation_of: Web/HTML/Element/spacer +--- +<div>{{non-standard_header}}{{ obsolete_header }}</div> + +<p><span class="seoSummary"><strong><code><spacer></code></strong> 是过时的 HTML 元素,它可以向页面插入间隔。它由 Netscape 设计,用于实现单像素布局图像的相同效果,Web 设计师用它来向页面添加空白,而不需要实际使用图片。 但是,<code><spacer></code> 不再受任何主流浏览器支持,并且相同效果可以简单由 CSS 实现。</span></p> + +<p>Firefox 是 Netscape 浏览器的后继,在版本 4 中移除了 <code><spacer> </code>的支持。</p> + +<h2 id="Attributes" name="Attributes">属性</h2> + +<p>就像其他 HTML 元素一样,这个元素支持 <a href="/en-US/docs/HTML/Global_attributes" title="HTML/Global attributes">全局属性</a>。</p> + +<dl> + <dt>{{ htmlattrdef("type") }}</dt> + <dd>这个属性指定间隔的类型,可用的值为 <code>horizontal</code>, <code>vertical</code> 和 <code>block</code>。</dd> + <dt>{{ htmlattrdef("size") }}</dt> + <dd>当类型为 <code>horizontal</code> 或 <code>vertical</code> 时,这个属性可以用于定义间隔大小,以像素为单位。</dd> + <dt>{{ htmlattrdef("width") }}</dt> + <dd>当类型为 <code>block</code> 时,这个属性可以用于定义间隔的宽度,以像素为单位。</dd> + <dt>{{ htmlattrdef("height") }}</dt> + <dd>当类型为 <code>block</code> 时,这个属性可以用于定义间隔的高度,以像素为单位。</dd> + <dt>{{ htmlattrdef("align") }}</dt> + <dd>这个属性定义了间隔的对齐,可用的值为 <code>left</code>, <code>right</code> 和 <code>center</code>。</dd> +</dl> + +<h2 id="示例">示例</h2> + +<pre class="brush:html"><span>Just a text node</span> +<spacer type="horizontal" size="10"></spacer> +<span>Just another text node</span> +<spacer type="block" width="10" height="10"></spacer> +</pre> + +<h2 id="规范">规范</h2> + +<p>并不是任何规范的一部分。</p> + +<p>{{ HTMLRef }}</p> |