CSS mix-blend-mode Property Reference
The CSS mix-blend-mode property is a standard property in Compositing and Blending. Review its formal syntax, computed behavior, and practical declarations.
Updated 2026-08-12
mix-blend-mode overview
The CSS mix-blend-mode property is a standard property in Compositing and Blending. Review its formal syntax, computed behavior, and practical declarations.
The property is not inherited by default. Use an explicit global keyword when inheritance is intended.
Syntax and formal definition
| Field | Value |
|---|---|
| Formal syntax | <blend-mode> | plus-darker | plus-lighter |
| Initial value | normal |
| Applies to | allElements |
| Inherited | No |
| Percentages | no |
| Computed value | asSpecified |
| Animation type | notAnimatable |
| Media | visual |
| Specification group | Compositing and Blending |
| Status | Standard |
Practical examples
These declarations demonstrate valid ways to set mix-blend-mode. The initial and inherit global keywords remain available even when a property-specific value is preferable.
.reset-example {
mix-blend-mode: initial;
}
.inherit-example {
mix-blend-mode: inherit;
}
@supports (mix-blend-mode: initial) {
.supported {
mix-blend-mode: initial;
}
}