Back to Content

HTMLFontElement

files/en-us/web/api/htmlfontelement/index.md

latest1.4 KB
Original Source

{{APIRef("HTML DOM")}}{{Deprecated_Header}}

Implements the document object model (DOM) representation of the font element. The HTML Font Element {{HTMLElement("font")}} defines the font size, font face and color of text.

{{InheritanceDiagram}}

Instance properties

Inherits properties from its parent, {{domxref("HTMLElement")}}.

  • {{domxref("HTMLFontElement.color")}} {{Deprecated_Inline}}
    • : A string that reflects the color HTML attribute, containing either a named color or a color specified in the hexadecimal #RRGGBB format.
  • {{domxref("HTMLFontElement.face")}} {{Deprecated_Inline}}
    • : A string that reflects the face HTML attribute, containing a comma-separated list of one or more font names.
  • {{domxref("HTMLFontElement.size")}} {{Deprecated_Inline}}
    • : A string that reflects the size HTML attribute, containing either a font size ranging from 1 to 7 or a number relative to the default value 3, for example -2 or +1.

Instance methods

No specific method; inherits methods from its parent, {{domxref("HTMLElement")}}.

Specifications

{{Specifications}}

Browser compatibility

{{Compat}}

See also

  • The HTML element implementing this interface: {{HTMLElement("font")}}.