CSS Rendering-Intent Property

CSS 1

CSS 2

CSS 3

No No Yes

Description

This property permits the specification of a color profile rendering intent other than the default.

Syntax

rendering-intent: [value];

Possible values

  • auto
  • perceptual
  • relative-colorimetric
  • saturation
  • absolute-colorimetric
  • inherit

Initial Value

Auto

Applies To

All elements

Inherited

Yes

Media

Visual

Example

.class {
  rendering-intent: saturation ;
}


View All CSS Properties