我们的志愿者还没有将这篇文章翻译为 中文 (简体)。加入我们帮助完成翻译!
您也可以阅读此文章的English (US)版。
Obsolete
This feature is obsolete. Although it may still work in some browsers, its use is discouraged since it could be removed at any time. Try to avoid using it.
Implements the document object model (DOM) representation of the font element. The HTML Font Element <font>
defines the font size, font face and color of text.
Properties
Inherits properties from its parent, HTMLElement
.
HTMLFontElement.color
- Is a
DOMString
that reflects thecolor
HTML attribute, containing either a named color or a color specified in the hexadecimal #RRGGBB format. HTMLFontElement.face
- Is a
DOMString
that reflects theface
HTML attribute, containing a comma-separated list of one or more font names. HTMLFontElement.size
- Is a
DOMString
that reflects thesize
HTML attribute, containing either a font size number ranging from 1 to 7 or a relative size to thesize
attribute of the<basefont>
element, for example -2 or +1.
Methods
No specific method; inherits methods from its parent, HTMLElement
.
Specifications
- The
<font>
tag is not supported in HTML5 since it is now obsolete.
Browser compatibility
Feature | Chrome | Firefox (Gecko) | Internet Explorer | Opera | Safari (WebKit) |
---|---|---|---|---|---|
Basic support | ? | 22.0 (22.0) | ? | ? | ? |
Feature | Android | Firefox Mobile (Gecko) | IE Phone | Opera Mobile | Safari Mobile |
---|---|---|---|---|---|
Basic support | ? | 22.0 (22.0) | ? | ? | ? |
See also
- The HTML element implementing this interface:
<font>
.