aboutsummaryrefslogtreecommitdiff
path: root/files/zh-cn/web/html/element/font/index.html
diff options
context:
space:
mode:
authorPeter Bengtsson <mail@peterbe.com>2020-12-08 14:40:17 -0500
committerPeter Bengtsson <mail@peterbe.com>2020-12-08 14:40:17 -0500
commit33058f2b292b3a581333bdfb21b8f671898c5060 (patch)
tree51c3e392513ec574331b2d3f85c394445ea803c6 /files/zh-cn/web/html/element/font/index.html
parent8b66d724f7caf0157093fb09cfec8fbd0c6ad50a (diff)
downloadtranslated-content-33058f2b292b3a581333bdfb21b8f671898c5060.tar.gz
translated-content-33058f2b292b3a581333bdfb21b8f671898c5060.tar.bz2
translated-content-33058f2b292b3a581333bdfb21b8f671898c5060.zip
initial commit
Diffstat (limited to 'files/zh-cn/web/html/element/font/index.html')
-rw-r--r--files/zh-cn/web/html/element/font/index.html47
1 files changed, 47 insertions, 0 deletions
diff --git a/files/zh-cn/web/html/element/font/index.html b/files/zh-cn/web/html/element/font/index.html
new file mode 100644
index 0000000000..326372c54e
--- /dev/null
+++ b/files/zh-cn/web/html/element/font/index.html
@@ -0,0 +1,47 @@
+---
+title: <font>
+slug: Web/HTML/Element/font
+translation_of: Web/HTML/Element/font
+---
+<div>{{Deprecated_header}}</div>
+
+<h2 id="概要">概要</h2>
+
+<p><em>HTML Font 元素</em>(<code>&lt;font&gt;</code>)定义了该内容的字体大小、顏色与表现。</p>
+
+<div class="note">
+<p><em>注意:</em></p>
+
+<p><strong>不要使用这个元素!</strong>尽管它在 HTML 3.2 规范化,但在 HTML 4.01 中已废除,因为该元件只和样式相关,接着在 HTML5 过时。</p>
+
+<p>从 HTML 4 开始,HTML 不能在 {{HTMLElement("style")}} 元素,或各元素 <strong>style</strong> 属性以外,表现任何样式信息。今后的网页开发,样式只能使用 <a href="/zh-TW/docs/CSS" title="CSS">CSS</a> 来编写。</p>
+
+<p>{{HTMLElement("font")}} 元素的行为,可以通过 <a href="/zh-TW/docs/CSS" title="CSS">CSS</a> 属性实现,以及更好控制。</p>
+</div>
+
+<h2 id="属性">属性</h2>
+
+<p>如同其他 HTML 元素,这个元素支持<a href="/en-US/docs/HTML/Global_attributes" title="HTML/Global attributes">全局属性</a>。</p>
+
+<dl>
+ <dt>{{htmlattrdef("color")}}</dt>
+ <dd>这个属性使用颜色名称或是十六进制的 #RRGGBB 格式,来设置文字的颜色。</dd>
+ <dt>{{htmlattrdef("face")}}</dt>
+ <dd>这个属性列出了一个或多个逗号分隔的字体名称。 默认样式中的文档文字,会使用客户端浏览器所支持的,第一个字体风格来渲染。如果本地系统中并没有安装列出的字体,浏览器会使用系统预设的均衡(proportional)或等宽(fixed-width)字体。</dd>
+ <dt>{{htmlattrdef("size")}}</dt>
+ <dd>这个属性使用数字或相对值指定文字大小。数字在最小的7到最大的7之间,默认值为3。也可以用诸如 <span style="font-family: courier new;">+2</span> 或 <span style="font-family: courier new;">-3</span> 的相对值指定,这会将其设置为,相对于 {{HTMLElement("basefont")}} 元素 {{htmlattrxref("size", "basefont")}}属性的值,或者如果不存在,则是相对于 <span style="font-family: courier new;">3</span> 也就是默认值的值。</dd>
+</dl>
+
+<h2 id="DOM_接口">DOM 接口</h2>
+
+<p>这个元素实现了 {{domxref("HTMLFontElement")}} 接口。</p>
+
+<h2 id="浏览器兼容性">浏览器兼容性</h2>
+
+<h3 id="Gecko_注解">Gecko 注解</h3>
+
+<p>在 Gecko 15.0 {{geckoRelease("15.0")}} 之前的版本, Gecko 并不能正确处理 <code>size</code> 属性的超出范围的数值。对于相对大小,它并不接受超出范围的数值。现在,它已经能够将其正确截断为 -10 到 +10 之内的范围。</p>
+
+<p>Gecko 15.0 还移除了 <code>&lt;font&gt;</code> 元素对 <code>font-weight</code> 与 <code>point-size</code> 属性的支持:这些非标准属性只受 Gecko 引擎支持。</p>
+
+<div>{{HTMLRef}}</div>