Firefox Tomorrow

web api instance property

Document: linkColor property

View on MDN ↗

The Document.linkColor property gets/sets the color of links within the document.

This property is deprecated. As an alternative, you can set the CSS color property on either HTML anchor links (<a>) or on :link pseudo-classes.

Value

A string representing the color as a word (e.g., red) or hexadecimal value (e.g., #ff0000).

When set to the null value, that null value is converted to the empty string (""), so document.linkColor = null is equivalent to document.linkColor = "".

Examples

document.linkColor = "blue";

Specifications

SpecificationsStandards references are available on the canonical MDN page.

Browser compatibility

Browser compatibilityCompatibility data is available on the canonical MDN page.

The default value for this property in Mozilla Firefox is blue (#0000ee in hexadecimal).

See also