DigitalOcean provides cloud products for every stage of your journey. Get started with $200 in free credit!
The mask-composite
CSS property allows us to combine a mask layer image with the mask layers below it.
.element {
mask-composite: subtract;
}
When there are multiple mask layer images, they need to be composited into one final mask layer. mask-compositespecifies how mask layers with different shapes are combined into a single image. Think of it like combining layers in an image editing app, like Photoshop, Figma or Sketch, where you have controls that set how the layers are combined.
Or, another way to think about it:
Syntax
mask-composite: <compositing-operator>#
where
<compositing-operator> = add | subtract | intersect | exclude
- Initial:
add
- Applies to: All elements. In SVG, it applies to container elements without the
<defs>
element and all graphics elements - Inherited: no
- Computed value: as specified
- Animation type: discrete
Values
/* 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;
For the composition, the mask layer image that the mask-composite
value is applied to is the source, while all mask layers below it are the destination.
add
: The default value. The mask image layer closer to the user (source) is placed on top of the next mask image layer (destination). The combination is the final mask layer.subtract
: The mask image layer closer to the user is placed where it falls outside of the next mask image layer. In other words, the final combination is portions of the destination that don’t overlap the source.intersect
: The portions of source that overlap the destination replace the destination. In other words, the final combination is portions of the destination that overlap the source.exclude
: The non-overlapping regions of source and destination are combined.initial
: Applies the property’s default value,add
.inherit
: Adopts themask-composite
value of the parent.unset
: Removes the currentmask-composite
from the element.
Example
In the following example, two mask image layers are combined using exclude
value:
img {
mask-image: url(circle.svg), url(plus.svg);
mask-size: 150px, 200px;
mask-position: center;
mask-composite: exclude;
}
At the time of writing, this example works only in Firefox.
Using multiple values
This property can take a comma-separated list of values for mask compositing and the number of values is one value less than the number of mask images specified using mask-image
.
In the following example:
- the first value specifies the composite operation of the second image with the third one, and
- the second value is used to perform the composite operation of the first mask image with the result obtained from the first operation.
And so on for any number of mask layer images. Remember, the first image specified is placed on top of the ones specified after it.
.element {
mask-image: url(circle.png), url(star.png), url(square.png);
mask-composite: exclude, subtract;
}
Browser support
IE | Edge | Firefox | Chrome | Safari | Opera |
---|---|---|---|---|---|
No | No * | 53+ | No | No | No |
Android Chrome | Android Firefox | Android Browser | iOS Safari | Opera Mobile |
---|---|---|---|---|
No | 87+ | No | No | No |
* Edge 18 supported mask-composite
before adopting the Blink rendering engine.
More information
Clipping and Masking in CSS
Masking vs. Clipping: When to Use Each
33: Clipping and Masking
#185: Playing with CSS Masks
Mask Compositing: The Crash Course
Image Fragmentation Effect With CSS Masks and Custom Properties
Related
mask-clip
.element { mask-clip: padding-box; }
mask-composite
.element { mask-composite: subtract; }
mask-image
.element { mask-image: url(star.svg); }
mask-mode
.element { mask-mode: alpha; }
mask-origin
.element { mask-origin: content-box; }
mask-position
.element { mask-position: 20px center; }
mask-repeat
.element { mask-repeat: repeat-y; }
mask-size
.element { mask-size: 200px 100px; }
mask-type
.element { mask-type: alpha; }