mask-composite

The mask-composite CSS property represents a compositing operation used on the current mask layer with the mask layers below it.

/* Keyword values */
mask-composite: add;
mask-composite: subtract;
mask-composite: intersect;
mask-composite: exclude;

/* Global values */
mask-composite: inherit;
mask-composite: initial;
mask-composite: unset;

Syntax

One or more of the keyword values listed below, separated by commas.

Values

For the composition the current mask layer is referred to as source, while all layers below it are referred to as destination.

add
The source is placed over the destination.
subtract
The source is placed, where it falls outside of the destination.
intersect
The parts of source that overlap the destination, replace the destination.
exclude
The non-overlapping regions of source and destination are combined.

Formal definition

Initial valueadd
Applies toall elements; In SVG, it applies to container elements excluding the defs element and all graphics elements
Inheritedno
Computed valueas specified
Animation typediscrete

Formal syntax

<compositing-operator>#

where
<compositing-operator> = add | subtract | intersect | exclude

Examples

Compositing mask layers with addition

CSS

#masked {
  width: 100px;
  height: 100px;
  background-color: #8cffa0;
  mask-image: url(https://mdn.mozillademos.org/files/12668/MDN.svg),
              url(https://mdn.mozillademos.org/files/12676/star.svg);
  mask-size: 100% 100%;
  mask-composite: add; /* Can be changed in the live sample */
}

Result

Specifications

Specification Status Comment
CSS Masking Module Level 1
The definition of 'mask-composite' in that specification.
Candidate Recommendation Initial definition

Browser compatibility

DesktopMobile
ChromeEdgeFirefoxInternet ExplorerOperaSafariAndroid webviewChrome for AndroidFirefox for AndroidOpera for AndroidSafari on iOSSamsung Internet
mask-compositeChrome No support No
Notes
No support No
Notes
Notes See also -webkit-mask-composite for a similar non-standard property that uses different keywords.
Edge No support 18 — 79Firefox Full support 53IE No support NoOpera No support No
Notes
No support No
Notes
Notes See also -webkit-mask-composite for a similar non-standard property that uses different keywords.
Safari No support No
Notes
No support No
Notes
Notes See also -webkit-mask-composite for a similar non-standard property that uses different keywords.
WebView Android No support No
Notes
No support No
Notes
Notes See also -webkit-mask-composite for a similar non-standard property that uses different keywords.
Chrome Android No support No
Notes
No support No
Notes
Notes See also -webkit-mask-composite for a similar non-standard property that uses different keywords.
Firefox Android Full support 53Opera Android No support No
Notes
No support No
Notes
Notes See also -webkit-mask-composite for a similar non-standard property that uses different keywords.
Safari iOS No support No
Notes
No support No
Notes
Notes See also -webkit-mask-composite for a similar non-standard property that uses different keywords.
Samsung Internet Android No support No
Notes
No support No
Notes
Notes See also -webkit-mask-composite for a similar non-standard property that uses different keywords.

Legend

Full support
Full support
No support
No support
See implementation notes.
See implementation notes.