To the extent possible under law, the editors have waived all copyright and related or neighboring rights to this work. In addition, as of 29 August 2014, the editors have made this specification available under the Open Web Foundation Agreement Version 1.0, which is available at http://www.openwebfoundation.org/legal/the-owf-1-0-agreements/owfa-1-0. Parts of this work may be from another specification document. If so, those parts are instead covered by the license of that specification document.
CSS Masking provides two means for partially or fully hiding portions of visual elements: masking and clipping. Masking describes how to use another graphical element or image as a luminance or alpha mask. Typically, rendering an element via CSS or SVG can conceptually described as if the element, including its children, are drawn into a buffer and then that buffer is composited into the element’s parent. Luminance and alpha masks influence the transparency of this buffer before the compositing stage. Clipping describes the visible region of visual elements. The region can be described by using certain SVG graphics elements or basic shapes. Anything outside of this region is not rendered.
This section is not normative.
This specification defines two different graphical operations which both fully or partly hide portions of an object: clipping and masking.
A closed vector path, shape or polygon defines a so called clipping path. This clipping path is a region (in the absence of anti-aliasing) where everything on the “inside” of this region is allowed to show through but everything on the outside is “clipped out” and does not appear on the canvas.
The clip-path property can reference an SVG graphics element or use a specified basic shapes as clipping path.
The effect of applying a mask to a graphical object is as if the graphical object will be painted onto the background through the mask, thus completely or partially masking out parts of the graphical object.
Masks are applied using the mask-image or mask-box-source properties.
The mask-image property may reference a mask element. In this case the content of the mask element is rendered into temporary canvas which has been initialized to transparent black. This temporary canvas is taken as mask image. Alternatively, for many simple uses, the mask-image property may refer directly to images to be used as mask image, forgoing the need for an explicit mask element. Additionally, mask-image allows a list of images or references. Each list item specifies a layer of the mask that can be composited with the immediate layer below it using Porter Duff compositing operators. The combined, composited layers act as one mask. The mask property serves as a shorthand property for mask-box, mask-image and other characterizing properties.
The mask-box-source property splits a mask image into 9 pieces. The pieces may be sliced, scaled and stretched in various ways to fit the size of the mask box image area. The mask-box property serves as a shorthand property for mask-box-source and other characterizing properties.
Note: While masking gives many possibilities for enhanced graphical effects and in general provides more control over the “visible portions” of the content, clipping paths can perform better and are easier to interpolate.
This specification defines a set of CSS properties that affect the visual rendering of elements to which those properties are applied. These effects are applied after elements have been sized and positioned according to the Visual formatting model from [CSS21]. Some values of these properties result in the creation of a stacking context. Furthermore, this specification replaces the section Clipping: the clip property from [CSS21].
The compositing model follows the SVG compositing model [SVG11]: First the element is styled under absence of filter effects, masking, clipping and opacity. Then the element and its descendants are drawn on a temporary canvas. In a last step the following effects are applied to the element in order: filter effects [FILTER-EFFECTS], clipping, masking and opacity.
This specification allows compositing multiple mask layers with the Porter Duff compositing operators defined in CSS Compositing and Blending [COMPOSITING-1].
The terms object bounding box and stroke bounding box follow the definitions in SVG 2 [SVG2].
This specification follows the CSS property definition conventions from [CSS21]. Basic shapes are defined in CSS Shapes Module Level 1 [CSS-SHAPES]. Value types not defined in these specifications are defined in CSS Values and Units Module Level 3 [CSS3VAL].
In addition to the property-specific values listed in their definitions, all properties defined in this specification also accept the inherit keyword as their property value. For readability it has not been repeated explicitly.
Definitions of CSS properties and values in this specification are analogous to definitions in CSS Backgrounds and Borders [CSS3BG]. To avoid redundancy, this specification relies on descriptions and definitions of CSS Backgrounds and Borders. The following terms in CSS Backgrounds and Borders have the following meaning in this specification:
Term in CSS Masking | Term in [CSS3BG] |
---|---|
mask images | background images |
mask painting area | background painting area |
mask-size | background-size |
mask-position | background-position |
mask positioning area | background positioning area |
mask box image area | border image area |
The clipping path restricts the region to which paint can be applied, the so-called clipping region. Conceptually, any parts of the drawing that lie outside of this region are not drawn. This includes any content, background, borders, text decoration, outline and visible scrolling mechanism of the element to which the clipping path is applied, and those of its descendants.
An element’s ancestors may also clip portions of their content (e.g., via their own clip or clip-path properties and/or if their overflow property is not visible). What is rendered is the cumulative intersection.
If the clipping region exceeds the bounds of the UA’s document window, content may be clipped to that window by the native operating environment.
A clipping path is conceptually equivalent to a custom viewport for the element it applies to. Thus, it affects the rendering of an element. It does not affects the element’s inherent geometry. The boundaries of a clipped element (i.e. an element which references a clipPath element via a clip-path property, or a child of the referencing element) must remain the same as if it were not clipped.
Consider a shape that is clipped by a clipping path applied to an ancestor:
<g clip-path="circle()">
<path id="shape" d="M0,0 L10,10, L 20,0 z"/>
</g>
The shape is referenced by a <use>
element:
<use xlink:href="#shape"/>
The geometry of the shape is not influenced by the circular clipping path.
By default, pointer events must not be dispatched on the clipped (non-visible) regions of a shape. For example, an element with a dimension of 10px to 10px which is clipped to a circle with a radius of 5px will not receive click events outside the clipping region.
Name: | clip-path |
---|---|
Value: | <clip-source> | [ <basic-shape> || <geometry-box> ] | none |
Initial: | none |
Applies to: | All elements. In SVG, it applies to container elements without the <defs> element and all graphics elements |
Inherited: | no |
Media: | visual |
Computed value: | as specified, but with <url> values made absolute |
Percentages: | as specified |
Animatable: | See shape-outside [CSS-SHAPES] |
Specifies a basic shape or references a clipPath element to create a clipping path.
<clip-source> = <url>
<geometry-box> = <shape-box> | fill | stroke | view-box
If specified in combination with a <basic-shape> it provides the reference box for the <basic-shape>.
If specified by itself, uses the edges of the specified box, including any corner shaping (e.g. defined by border-radius [CSS3BG]), as clipping path. See also “Shapes from box values” [CSS-SHAPES].
Uses the nearest SVG viewport as reference box.
If a ‘viewBox‘ attribute is specified for the SVG viewport creating element:
For SVG elements without associated CSS layout box, the values content-box, padding-box, border-box and margin-box compute to fill-box.
For elements with associated CSS layout box, the values fill-box, stroke-box and view-box compute to border-box.
A computed value of other than none results in the creation of a stacking context [CSS21] the same way that CSS opacity [CSS3COLOR] does.
If the URI reference is not valid (e.g it points to an object that doesn’t exist or the object is not a clipPath element), no clipping is applied.
clip-path: polygon(15px 99px, 30px 87px, 65px 99px, 85px 55px,
122px 57px, 184px 73px, 198px 105px, 199px 150px,
145px 159px, 155px 139px, 126px 120px, 112px 138px,
80px 128px, 39px 126px, 24px 104px);
clip-path: url("#clip1");
<svg>
<clipPath id="clip1">
<path d="15,99 30,87 65,99 85,55 122,57 184,73 198,105
199,150 145,159 155,139 126,120 112,138 80,128 39,126
24,104"/>
</clipPath>
</svg>
Name: | clipPath |
---|---|
Categories: | None. |
Content model: | Any number of the following elements, in any order: |
Attributes: | |
DOM Interfaces: | SVGClipPathElement |
Attribute definitions:
Defines the coordinate system for the contents of the clipPath.
The contents of the clipPath represent values in the current user coordinate system in place at the time when the clipPath element is referenced (i.e., the user coordinate system for the element referencing the clipPath element via the clip-path property).
The coordinate system has its origin at the top left corner of the bounding box of the element to which the clipping path applies to and the same width and height of this bounding box. User coordinates are sized equivalently to the CSS px unit.
If attribute clipPathUnits is not specified, then the effect is as if a value of userSpaceOnUse were specified.
Animatable: yes.
CSS properties inherit into the clipPath element from its ancestors; properties do not inherit from the element referencing the clipPath element.
clipPath elements are never rendered directly; their only usage is as something that can be referenced using the clip-path property. The display property does not apply to the clipPath element; thus, clipPath elements are not directly rendered even if the display property is set to a value other than none, and clipPath elements are available for referencing even when the display property on the clipPath element or any of its ancestors is set to none.
A clipPath element can contain <path>
elements, <text>
elements, basic shapes (such as <circle>
) or a <use>
element. If a <use>
element is a child of a clipPath element, it must directly reference <path>
, <text>
or basic shapes elements. Indirect references are an error and the clipPath element must be ignored.
The raw geometry of each child element exclusive of rendering properties such as fill, stroke, stroke-width within a clipPath conceptually defines a 1-bit mask (with the possible exception of anti-aliasing along the edge of the geometry) which represents the silhouette of the graphics associated with that element. Anything outside the outline of the object is masked out. If a child element is made invisible by display or visibility it does not contribute to the clipping path. When the clipPath element contains multiple child elements, the silhouettes of the child elements are logically OR’d together to create a single silhouette which is then used to restrict the region onto which paint can be applied. Thus, a point is inside the clipping path if it is inside any of the children of the clipPath.
For a given graphics element, the actual clipping path used will be the intersection of the clipping path specified by its clip-path property (if any) with any clipping paths on its ancestors, as specified by the clip-path property on the elements which establish a new viewport. (See [SVG11])
A couple of additions:
Name: | clip-rule |
---|---|
Value: | nonzero | evenodd |
Initial: | nonzero |
Applies to: | Applies to SVG graphics elements |
Inherited: | yes |
Media: | visual |
Computed value: | as specified |
Percentages: | n/a |
Animatable: | no |
The clip-rule property specifies the used winding rule for a graphics element.
The clip-rule property only applies to graphics elements that are contained within a clipPath element.
Note: The clip-rule property does not apply to <basic-shape>s.
The following fragment of code will cause an evenodd clipping rule to be applied to the clipping path because clip-rule is specified on the <path>
element that defines the clipping shape:
<g clip-rule="nonzero">
<clipPath id="MyClip">
<path d="..." clip-rule="evenodd" />
</clipPath>
<rect clip-path="url(#MyClip)" ... />
</g>
whereas the following fragment of code will not cause an evenodd clipping rule to be applied because the clip-rule is specified on the referencing element, not on the object defining the clipping shape:
<g clip-rule="nonzero">
<clipPath id="MyClip">
<path d="..." />
</clipPath>
<rect clip-path="url(#MyClip)" clip-rule="evenodd" ... />
</g>
Name: | mask-image |
---|---|
Value: | <mask-reference># |
Initial: | none |
Applies to: | All elements. In SVG, it applies to container elements without the <defs> element and all graphics elements |
Inherited: | no |
Media: | visual |
Computed value: | as specified, but with URIs made absolute |
Percentages: | n/a |
Animatable: | no |
This property sets the mask image of an element. Where:
<mask-reference> = none | <image> | <mask-source>
<mask-source> = <url>
A computed value of other than none results in the creation of a stacking context [CSS21] the same way that CSS opacity [CSS3COLOR] does.
A mask reference that is an empty image (zero width or zero height), that fails to download, is not a reference to an mask element, is non-existent, or that cannot be displayed (e.g. because it is not in a supported image format) still counts as an image layer of transparent black.
Note: A value of none in a list of <mask-reference>s may influence the masking operation depending on the used compositing operator specified by mask-composite.
Note: A <mask-source> counts as mask layer and can be combined in a repeatable <mask-reference> list with <image> or further <mask-source> list items.
See the section “Mask processing” for how to process a mask image.
Examples for mask references:
body { mask-image: linear-gradient(black 0%, transparent 100%) }
p { mask-image: none }
div { mask-image: url(resources.svg#mask2) }
See the section “Layering multiple mask images” for how mask-image interacts with other comma-separated mask properties to form each mask image layer.
Name: | mask-type |
---|---|
Value: | <source-type># |
Initial: | auto |
Applies to: | All elements. In SVG, it applies to container elements without the <defs> element and all graphics elements |
Inherited: | no |
Media: | visual |
Computed value: | as specified |
Percentages: | n/a |
Animatable: | no |
The mask-type property indicates whether the <mask-reference> is treated as luminance mask or alpha mask. (See Mask processing.)
<source-type> = alpha | luminance | auto
Values have the following meanings:
If the <mask-reference> of the mask-image property is of type <mask-source> the luminance values of the mask image should be used as the mask values.
If the <mask-reference> of the mask-image property is of type <image> the alpha values of the mask image should be used as the mask values.
In the following example, the mask-source-type property sets the mask type value for the mask element to alpha. The mask-image property has a reference to this mask element and the mask-type property has a value of luminance. The mask-type property will override the definition of mask-source-type to luminance.
<mask id="SVGMask" mask-source-type="alpha" maskContentUnits="objectBoundingBox">
<radialGradient id="radialFill">
<stop stop-color="white" offset="0"/>
<stop stop-color="black" offset="1"/>
</radialGradient>
<circle fill="url(#radialFill)" cx="0.5" cy="0.5" r="0.5"/>
</mask>
<style>
rect {
mask-image: url(#SVGMask);
mask-type: luminance;
}
</style>
<rect width="200" height="200" fill="green"/>
See the section “Layering multiple mask images” for how mask-type interacts with other comma-separated mask properties to form each mask image layer.
Name: | mask-repeat |
---|---|
Value: | <repeat-style># |
Initial: | no-repeat |
Applies to: | All elements. In SVG, it applies to container elements without the <defs> element and all graphics elements |
Inherited: | no |
Media: | visual |
Computed value: | Consists of: two keywords, one per dimension |
Percentages: | n/a |
Animatable: | no |
Specifies how mask images are tiled after they have been sized and positioned.
See background-repeat property [CSS3BG] for the definitions of the property values.
body {
background-color: blue;
mask-image: url(dot-mask.png) luminance;
mask-repeat: space;
}
See the section “Layering multiple mask images” for how mask-repeat interacts with other comma-separated mask properties to form each mask image layer.
Name: | mask-position |
---|---|
Value: | <position># |
Initial: | center |
Applies to: | All elements. In SVG, it applies to container elements without the <defs> element and all graphics elements |
Inherited: | no |
Media: | visual |
Computed value: | Consisting of: two keywords representing the origin and two offsets from that origin, each given as an absolute length (if given a <length>), otherwise as a percentage. |
Percentages: | refer to size of mask painting area minus size of mask image; see text background-position [CSS3BG] |
Animatable: | as repeatable list of simple list of length, percentage, or calc |
See the background-position property [CSS3BG] for the definitions of the property values.
In the example below, the (single) image is placed in the lower-right corner of the viewport.
body {
mask-image: url("logo.png");
mask-position: 100% 100%;
mask-repeat: no-repeat;
}
Mask positions can also be relative to other corners than the top left. E.g., the following puts the background image 10px from the bottom and 3em from the right:
mask-position: right 3em bottom 10px
See the section “Layering multiple mask images” for how mask-position interacts with other comma-separated mask properties to form each mask image layer.
Name: | mask-clip |
---|---|
Value: | [ <geometry-box> | no-clip ]# |
Initial: | border-box |
Applies to: | All elements. In SVG, it applies to container elements without the <defs> element and all graphics elements |
Inherited: | no |
Media: | visual |
Computed value: | as specified |
Percentages: | n/a |
Animatable: | no |
Determines the mask painting area, which determines the area that is affected by the mask. The painted content of an element may be restricted to this area.
Values have the following meanings:
Uses the nearest SVG viewport as reference box.
If a ‘viewBox‘ attribute is specified for the SVG viewport creating element:
For SVG elements without associated CSS layout box, the values content-box, padding-box, border-box and margin-box compute to fill-box.
For elements with associated CSS layout box, the values fill-box, stroke-box and view-box compute to the initial value of mask-clip.
See the section “Layering multiple mask images” for how mask-clip interacts with other comma-separated mask properties to form each mask image layer.
Name: | mask-origin |
---|---|
Value: | <geometry-box># |
Initial: | border-box |
Applies to: | All elements. In SVG, it applies to container elements without the <defs> element and all graphics elements |
Inherited: | no |
Media: | visual |
Computed value: | as specified |
Percentages: | n/a |
Animatable: | no |
For elements rendered as a single box, specifies the mask positioning area. For elements rendered as multiple boxes (e.g., inline boxes on several lines, boxes on several pages) specifies which boxes box-decoration-break operates on to determine the mask positioning area.
Uses the nearest SVG viewport as reference box.
If a ‘viewBox‘ attribute is specified for the SVG viewport creating element:
For SVG elements without associated CSS layout box, the values content-box, padding-box, border-box and margin-box compute to fill-box.
For elements with associated CSS layout box, the values fill-box, stroke-box and view-box compute to the initial value of mask-origin.
Note: If mask-clip is padding-box, mask-origin is border-box, mask-position is top left (the initial value), and the element has a non-zero border, then the top and left of the mask image will be clipped.
See the section “Layering multiple mask images” for how mask-origin interacts with other comma-separated mask properties to form each mask image layer.
Name: | mask-size |
---|---|
Value: | <bg-size># |
Initial: | border-box |
Applies to: | All elements. In SVG, it applies to container elements without the <defs> element and all graphics elements |
Inherited: | no |
Media: | visual |
Computed value: | as specified, but with lengths made absolute |
Percentages: | n/a |
Animatable: | as repeatable list of simple list of length, percentage, or calc (This means keyword values are not animatable.) |
Specifies the size of the mask images.
See background-size property [CSS3BG] for the definitions of the property values.
See the section “Layering multiple mask images” for how mask-size interacts with other comma-separated mask properties to form each mask image layer.
Name: | mask-composite |
---|---|
Value: | <composite-mode># |
Initial: | source-over |
Applies to: | All elements. In SVG, it applies to container elements without the |
Inherited: | no |
Media: | visual |
Computed value: | as specified |
Percentages: | n/a |
Animatable: | no |
Defines a Porter Duff compositing operator for each mask layer [COMPOSITING-1].
A specified compositing operator defines the compositing operation for the current mask layer with the immediate mask layer below it. If there is no further mask layer, the compositing operator must be ignored. Mask layers must not composite with the element’s content or the content behind the element, instead they must act as if they are rendered into an isolated group.
mask-image: circle.svg, rect.svg;
mask-composite: source-over;
circle.svg
and rect.svg
are visible will be used as mask.
mask-image: circle.svg, rect.svg;
mask-composite: destination-in;
circle.svg
and rect.svg
where both do NOT overlap.
mask-image: circle.svg, rect.svg;
mask-composite: xor;
See the section “Layering multiple mask images” for how mask-composite interacts with other comma-separated mask properties to form each mask image layer.
Name: | mask |
---|---|
Value: | <mask-layer># |
Initial: | see individual properties |
Applies to: | All elements. In SVG, it applies to container elements without the <defs> element and all graphics elements |
Inherited: | no |
Media: | visual |
Computed value: | see individual properties |
Percentages: | see individual properties |
Animatable: | see individual properties |
<mask-layer> = <mask-reference> <source-type>? || <position> [ / <bg-size> ]? || <repeat-style> || <geometry-box> || [ <geometry-box> | no-clip ] || <composite-mode>
If one <geometry-box> value is present then it sets both mask-origin and mask-clip to that value. If two <geometry-box> values are present, then the first sets mask-origin and the second mask-clip.
The used value of the properties mask-image, mask-repeat, mask-position, mask-clip, mask-origin and mask-size must have no effect if <mask-reference> references a mask element. In this case the element defines position, sizing and clipping of the mask image.
The mask shorthand also resets mask-box to its initial value. It is therefore recommended that authors use the mask shorthand, rather than other shorthands or the individual properties, to override any mask settings earlier in the cascade. This will ensure that mask-box has also been reset to allow the new styles to take effect.
Note: A future level of this specification will allow different mask layers for various additional masking operations like composited mask layers masking and serial layer masking.
The application of the mask-image property to an element formatted with the CSS box model establishes a stacking context in the same way that CSS opacity [CSS3COLOR] does, and all the element’s descendants are rendered together as a group with the masking applied to the group as a whole.
The mask-image property has no effect on the geometry or hit-testing of any element’s CSS boxes.
A mask image may be interpreted using one of two different methods with regards to calculating the mask values that will be multiplied with the target alpha values.
The first and simplest method of calculating the mask values is to use the alpha channel of the mask image. In this case the mask value at a given point is simply the value of the alpha channel at that point. The color channels do not contribute to the mask value.
The second method of calculating the mask values is to use the luminance of the mask image. In this case the mask value at a given point is computed from the color channel values and alpha channel value using the following procedure.
<feColorMatrix>
filter primitive [SVG11]) to convert the RGB color values to luminance values.Regardless of the method used, the procedure for calculating mask values assumes the content of the mask is a four-channel RGBA graphics object. For other types of graphics objects, special handling is required as follows.
For a three-channel RGB graphics object that is used in a mask (e.g., when referencing a three-channel image file), the effect is as if the object were converted into a four-channel RGBA image with the alpha channel uniformly set to 1.
For a single-channel image that is used in a mask (e.g., when referencing a single-channel grayscale image file), the effect is as if the object were converted into a four-channel RGBA image, where the single channel from the referenced object is used to compute the three color channels and the alpha channel is uniformly set to 1.
Note: When referencing a grayscale image file, the transfer curve relating the encoded grayscale values to linear light values must be taken into account when computing the color channels.
Note: SVG graphics elements (e.g., <circle>
or <text>
) are all treated as four-channel RGBA images for the purposes of masking operations.
The effect of a mask is identical to what would have happened if there were no mask but instead the alpha channel of the given object were multiplied with the mask’s resulting mask values.
Regions not covered by a mask image are treated as transparent black. The mask value is 0.
The mask of a box can have multiple layers. The number of layers is determined by the number of comma-separated values for the mask-image property. Note that a value of none still creates a layer.
See Layering Multiple Background Images [CSS3BG].
All mask images are transformed to alpha masks (if necessary see Mask processing) and combined by compositing taking the compositing operators specified by mask-composite into account.
With mask-box an image can be split into nine pieces: four corners, four edges and the middle piece as demonstrated in the figure below.
These pieces may be sliced, scaled and stretched in various ways to fit the size of the mask box image area. This distorted image is then used as a mask. The syntax of mask-box corresponds to the border-image property of CSS Background and Borders [CSS3BG].
The mask image in the following example is split into four corners with dimensions of 75 pixels, four edges and the middle piece that is stretched and scaled.
div {
background: linear-gradient(bottom, #F27BAA 0%, #FCC8AD 100%);
mask-box-slice: 25 fill;
mask-box-repeat: stretch;
mask-box-source: url(mask.png);
}
Name: | mask-box-source |
---|---|
Value: | none | <image> |
Initial: | none |
Applies to: | All elements. In SVG, it applies to container elements without the <defs> element and all graphics elements |
Inherited: | no |
Media: | visual |
Computed value: | none or the image with its URI made absolute |
Percentages: | n/a |
Animatable: | no |
Specifies an image to be used as mask image.
An image that is an empty image (zero width or zero height), that fails to download, is non-existent, or that cannot be displayed (e.g. because it is not in a supported image format) is ignored. It still counts as an mask image but does not mask the element.
See “Mask processing” on how to process the mask image.
A computed value of other than none results in the creation of a stacking context [CSS21] the same way that CSS opacity [CSS3COLOR] does.
Name: | mask-box-slice |
---|---|
Value: | [<number> | <percentage>]{1,4} fill? |
Initial: | 0 fill |
Applies to: | All elements. In SVG, it applies to container elements without the <defs> element and all graphics elements |
Inherited: | no |
Media: | visual |
Computed value: | as specified |
Percentages: | refer to size of the mask image |
Animatable: | no |
This property specifies inward offsets from the top, right, bottom, and left edges of the mask image, dividing it into nine regions: four corners, four edges and a middle. The middle image part is discarded (treated as fully transparent black) unless the fill-box keyword is present.
See the border-image-slice property [CSS3BG] for the definitions of the property values.
Name: | mask-box-width |
---|---|
Value: | [ <length> | <percentage> | <number> | auto ]{1,4} |
Initial: | auto |
Applies to: | All elements. In SVG, it applies to container elements without the <defs> element and all graphics elements |
Inherited: | no |
Media: | visual |
Computed value: | all <length>s made absolute, otherwise as specified |
Percentages: | relative to width/height of the mask box image area |
Animatable: | no |
The mask image is drawn inside an area called the mask box image area. This is an area whose boundaries by default correspond to the mask box, see mask-box-outset.
See the border-image-width property [CSS3BG] for the definitions of the property values.
Note: For SVG elements without an associated layout box the border-width is considered to be 0.
Name: | mask-box-outset |
---|---|
Value: | [ <length> | <number> ]{1,4} |
Initial: | 0 |
Applies to: | All elements. In SVG, it applies to container elements without the <defs> element and all graphics elements |
Inherited: | no |
Media: | visual |
Computed value: | all <length>s made absolute, otherwise as specified |
Percentages: | n/a |
Animatable: | no |
The values specify the amount by which the mask box image area extends beyond the border box. If it has four values, they set the outsets on the top, right, bottom and left sides in that order. If the left is missing, it is the same as the right; if the bottom is missing, it is the same as the top; if the right is missing, it is the same as the top.
As with mask-box-width, a <number> represents a multiple of the corresponding border-width. Negative values are not allowed for any of the mask-box-outset values.
Note: For SVG elements without associated layout box the border-width is considered to be 0.
Name: | mask-box-repeat |
---|---|
Value: | [ stretch | repeat | round | space ]{1,2} |
Initial: | stretch |
Applies to: | All elements. In SVG, it applies to container elements without the <defs> element and all graphics elements |
Inherited: | no |
Media: | visual |
Computed value: | as specified |
Percentages: | n/a |
Animatable: | no |
This property specifies how the images for the sides and the middle part of the mask image are scaled and tiled. The first keyword applies to the horizontal sides, the second to the vertical ones. If the second keyword is absent, it is assumed to be the same as the first.
See the border-image-repeat property [CSS3BG] for the definitions of the property values.
The exact process for scaling and tiling the mask box image parts is given in the section Masking with the mask-box
Name: | mask-box |
---|---|
Value: | <‘mask-box-source’> || <‘mask-box-slice’> [ / <‘mask-box-width’>? [ / <‘mask-box-outset’> ]? ]? || <‘mask-box-repeat’> |
Initial: | See individual properties |
Applies to: | See individual properties |
Inherited: | no |
Media: | visual |
Computed value: | See individual properties |
Percentages: | n/a |
Animatable: | See individual properties |
This is a shorthand property for setting mask-box-source, mask-box-slice, mask-box-width, mask-box-outset and mask-box-repeat. Omitted values are set to their initial values.
Note: The mask shorthand resets the properties mask-box, mask-box-source, mask-box-slice, mask-box-width, mask-box-outset and mask-box-repeat.
After the mask-box given by mask-box-source is sliced by the mask-box-slice values, the resulting nine images are scaled, positioned, and tiled into their corresponding mask image regions in four steps as described in the section Drawing the Border Image [CSS3BG].
The application of the mask-box-source property to an element formatted with the CSS box model establishes a stacking context in the same way that CSS opacity [CSS3COLOR] does, and all the element’s descendants are rendered together as a group with the masking applied to the group as a whole.
The mask-box-source property has no effect on the geometry or hit-testing of any element’s CSS boxes.
Name: | mask |
---|---|
Categories: | Container element |
Content model: | Any number of the following elements, in any order: |
Attributes: | |
DOM Interfaces: | SVGMaskElement |
Attribute definitions:
Defines the coordinate system for attributes x, y, width and height.
x, y, width and height represent values in the current user coordinate system [CSS3-TRANSFORMS] in place at the time when the mask element is referenced (i.e., the user coordinate system for the element referencing the mask element via the mask property).
x, y, width and height represent fractions or percentages of the object bounding box of the element to which the mask is applied. User coordinates are sized equivalently to the CSS px unit.
If attribute maskUnits is not specified, then the effect is as if a value of objectBoundingBox were specified.
Animatable: yes.
Defines the coordinate system for the contents of the mask.
The user coordinate system for the contents of the mask element is the current user coordinate system in place at the time when the mask element is referenced (i.e., the user coordinate system for the element referencing the mask element via the mask property).
The coordinate system has its origin at the top left corner of the bounding box of the element to which the clipping path applies to and the same width and height of this bounding box. User coordinates are sized equivalently to the CSS px unit.
If attribute maskContentUnits is not specified, then the effect is as if a value of userSpaceOnUse were specified.
Animatable: yes.
The x-axis coordinate of one corner of the rectangle for the largest possible offscreen buffer. If the attribute is not specified but at least one of the attributes y, width or height are specified, the effect is as if a value of -10% were specified.
Animatable: yes.
The y-axis coordinate of one corner of the rectangle for the largest possible offscreen buffer.
If the attribute is not specified but at least one of the attributes x, width or height are specified, the effect is as if a value of -10% were specified.
Animatable: yes.
The width of the largest possible offscreen buffer. A negative value or a value of zero disables rendering of the element.
If the attribute is not specified but at least one of the attributes x, y or height are specified, the effect is as if a value of 120% were specified.
Animatable: yes.
The height of the largest possible offscreen buffer.
A negative value or a value of zero disables rendering of the element.
If the attribute is not specified but at least one of the attributes x, y or width are specified, the effect is as if a value of 120% were specified.
Animatable: yes.
If at least one of the attributes x, y, width or height are specified, the given object and the rectangle defined by x, y, width and height establish a current clipping path. The rendered content of the mask must be clipped by this current clipping path.
CSS properties inherit into the mask element from its ancestors; properties do not inherit from the element referencing the mask element.
mask elements are never rendered directly; their only usage is as something that can be referenced using the mask property. The opacity, filter and display properties do not apply to the mask element; thus, mask elements are not directly rendered even if the display property is set to a value other than none, and mask elements are available for referencing even when the display property on the mask element or any of its ancestors is set to none.
Name: | mask-source-type |
---|---|
Value: | luminance | alpha |
Initial: | luminance |
Applies to: | mask elements |
Inherited: | no |
Media: | visual |
Computed value: | as specified |
Percentages: | n/a |
Animatable: | no |
The mask-source-type property defines whether the content of the mask element is treated as as luminance mask or alpha mask, as described in Calculating mask values.
Values have the following meanings:
The mask-source-type property allows the author of the mask element to specify the preferred masking operation. However, the author can override this preference by setting the mask-type value to something different than auto on the masked content.
In the following example the computed value of mask-source-type is luminance and the computed value of mask-type is auto. The UA must follow the preferred masking operation defined on the mask element.
<svg>
<mask style="mask-source-type: luminance;" id="mask">
...
</mask>
</svg>
<p style="mask-image: url(#mask); mask-type: auto;">
This is the masked content.
</p>
In the next example the computed value of mask-type is alpha and overrides the preference on the mask element that is computed to luminance. The mask image is used as an alpha mask.
<svg>
<mask style="mask-source-type: luminance;" id="mask2">
...
</mask>
</svg>
<p style="mask-image: url(#mask2); mask-type: alpha;">
This is the masked content.
</p>
The mask-source-type property is a presentation attribute for SVG elements.
It is important that the timing to the masking operations is independent of the source and destination pixel. Masking operations must be implemented in such a way that they always take the same amount of time regardless of the pixel values. If this rule is not followed, an attacker could infer information and mount a timing attack.
A timing attack is a method of obtaining information about content that is otherwise protected, based on studying the amount of time it takes for an operation to occur. If, for example, red pixels took longer to draw than green pixels, one might be able to reconstruct a rough image of the element being rendered, without ever having access to the content of the element.
<mask-source>s and <clip-source>s have special requirements on fetching resources.
User agents must use the potentially CORS-enabled fetch method defined by the [HTML5] specification for all <mask-source>, <clip-source> and <image> values on the mask-image, mask-box-source and clip-path properties. When fetching, user agents must use “Anonymous” mode, set the referrer source to the stylesheet’s URL and set the origin to the URL of the containing document. If this results in network errors, the effect is as if the value none had been specified.
Name: | clip |
---|---|
Value: | <rect()> | auto |
Initial: | auto |
Applies to: | Absolutely positioned elements. In SVG, it applies to elements which establish a new viewport, <pattern> elements and mask elements. |
Inherited: | no |
Media: | visual |
Computed value: | as specified |
Percentages: | n/a |
Animatable: | as rectangle |
With this specification the clip property is deprecated. Authors are encouraged to use the clip-path property instead. UAs must support the clip property.
The clip property applies only to absolutely positioned elements. In SVG, it applies to elements which establish a new viewport, <pattern>
elements and mask elements. Values have the following meanings:
<top> and <bottom> specify offsets from the top border edge of the box, and <right>, and <left> specify offsets from the left border edge of the box. Authors should separate offset values with commas. User agents must support separation with commas, but may also support separation without commas (but not a combination), because a previous revision of this specification was ambiguous in this respect.
<top>, <right>, <bottom>, and <left> may either have a <length> value or auto. Negative lengths are permitted. The value auto means that a given edge of the clipping region will be the same as the edge of the element’s generated border box (i.e., auto means the same as 0 for <top> and <left>, the same as the used value of the height plus the sum of vertical padding and border widths for <bottom>, and the same as the used value of the width plus the sum of the horizontal padding and border widths for <right>, such that four auto values result in the clipping region being the same as the element’s border box).
When coordinates are rounded to pixel coordinates, care should be taken that no pixels remain visible when <left> and <right> have the same value (or <top> and <bottom> have the same value), and conversely that no pixels within the element’s border box remain hidden when these values are auto.
Example: The following two rules:
p#one { clip: rect(5px, 40px, 45px, 5px); }
p#two { clip: rect(5px, 55px, 45px, 5px); }
and assuming both Ps are 50 by 55 pixel, will create, respectively, the rectangular clipping regions delimited by the dashed lines in the following illustrations:
The SVGClipPathElement interface corresponds to the clipPath element.
interface SVGClipPathElement : SVGElement { readonly attribute SVGAnimatedEnumeration clipPathUnits; readonly attribute SVGAnimatedTransformList transform; }; SVGClipPathElement implements SVGUnitTypes;
The SVGMaskElement interface corresponds to the mask element.
interface SVGMaskElement : SVGElement { readonly attribute SVGAnimatedEnumeration maskUnits; readonly attribute SVGAnimatedEnumeration maskContentUnits; readonly attribute SVGAnimatedLength x; readonly attribute SVGAnimatedLength y; readonly attribute SVGAnimatedLength width; readonly attribute SVGAnimatedLength height; }; SVGMaskElement implements SVGUnitTypes;
The following changes were made since the 29 October 2013 Last Call Working Draft.
The following significant changes were made since the 20 June 2013 Working Draft.
The following significant changes were made since the 15 November 2012 Working Draft.
See detailed list of changes in the ChangeLog.
Thanks to Elika J. Etemad, Liam R. E. Quin, Björn Höhrmann and Alan Stearns for their careful reviews, comments, and corrections. Special thanks to CJ Gammon for graphical assets.
Conformance requirements are expressed with a combination of descriptive assertions and RFC 2119 terminology. The key words “MUST”, “MUST NOT”, “REQUIRED”, “SHALL”, “SHALL NOT”, “SHOULD”, “SHOULD NOT”, “RECOMMENDED”, “MAY”, and “OPTIONAL” in the normative parts of this document are to be interpreted as described in RFC 2119. However, for readability, these words do not appear in all uppercase letters in this specification.
All of the text of this specification is normative except sections explicitly marked as non-normative, examples, and notes. [RFC2119]
Examples in this specification are introduced with the words “for example”
or are set apart from the normative text with class="example"
, like this:
Informative notes begin with the word “Note”
and are set apart from the normative text with class="note"
, like this:
Note, this is an informative note.
Name | Value | Initial | Applies to | Inh. | %ages | Media | Animatable | Computed value |
---|---|---|---|---|---|---|---|---|
clip-path | <clip-source> | [ <basic-shape> || <geometry-box> ] | none | none | All elements. In SVG, it applies to container elements without the <defs> element and all graphics elements | no | as specified | visual | See shape-outside [CSS-SHAPES] | as specified, but with <url> values made absolute |
clip-rule | nonzero | evenodd | nonzero | Applies to SVG graphics elements | yes | n/a | visual | no | as specified |
mask-image | <mask-reference># | none | All elements. In SVG, it applies to container elements without the <defs> element and all graphics elements | no | n/a | visual | no | as specified, but with URIs made absolute |
mask-type | <source-type># | auto | All elements. In SVG, it applies to container elements without the <defs> element and all graphics elements | no | n/a | visual | no | as specified |
mask-repeat | <repeat-style># | no-repeat | All elements. In SVG, it applies to container elements without the <defs> element and all graphics elements | no | n/a | visual | no | Consists of: two keywords, one per dimension |
mask-position | <position># | center | All elements. In SVG, it applies to container elements without the <defs> element and all graphics elements | no | refer to size of mask painting area minus size of mask image; see text background-position [CSS3BG] | visual | as repeatable list of simple list of length, percentage, or calc | Consisting of: two keywords representing the origin and two offsets from that origin, each given as an absolute length (if given a <length>), otherwise as a percentage. |
mask-clip | [ <geometry-box> | no-clip ]# | border-box | All elements. In SVG, it applies to container elements without the <defs> element and all graphics elements | no | n/a | visual | no | as specified |
mask-origin | <geometry-box># | border-box | All elements. In SVG, it applies to container elements without the <defs> element and all graphics elements | no | n/a | visual | no | as specified |
mask-size | <bg-size># | border-box | All elements. In SVG, it applies to container elements without the <defs> element and all graphics elements | no | n/a | visual | as repeatable list of simple list of length, percentage, or calc (This means keyword values are not animatable.) | as specified, but with lengths made absolute |
mask-composite | <composite-mode># | source-over | All elements. In SVG, it applies to container elements without the element and all graphics elements | no | n/a | visual | no | as specified |
mask | <mask-layer># | see individual properties | All elements. In SVG, it applies to container elements without the <defs> element and all graphics elements | no | see individual properties | visual | see individual properties | see individual properties |
mask-box-source | none | <image> | none | All elements. In SVG, it applies to container elements without the <defs> element and all graphics elements | no | n/a | visual | no | none or the image with its URI made absolute |
mask-box-slice | [<number> | <percentage>]{1,4} fill? | 0 fill | All elements. In SVG, it applies to container elements without the <defs> element and all graphics elements | no | refer to size of the mask image | visual | no | as specified |
mask-box-width | [ <length> | <percentage> | <number> | auto ]{1,4} | auto | All elements. In SVG, it applies to container elements without the <defs> element and all graphics elements | no | relative to width/height of the mask box image area | visual | no | all <length>s made absolute, otherwise as specified |
mask-box-outset | [ <length> | <number> ]{1,4} | 0 | All elements. In SVG, it applies to container elements without the <defs> element and all graphics elements | no | n/a | visual | no | all <length>s made absolute, otherwise as specified |
mask-box-repeat | [ stretch | repeat | round | space ]{1,2} | stretch | All elements. In SVG, it applies to container elements without the <defs> element and all graphics elements | no | n/a | visual | no | as specified |
mask-box | <‘mask-box-source’> || <‘mask-box-slice’> [ / <‘mask-box-width’>? [ / <‘mask-box-outset’> ]? ]? || <‘mask-box-repeat’> | See individual properties | See individual properties | no | n/a | visual | See individual properties | See individual properties |
mask-source-type | luminance | alpha | luminance | mask elements | no | n/a | visual | no | as specified |
clip | <rect()> | auto | auto | Absolutely positioned elements. In SVG, it applies to elements which establish a new viewport, <pattern> elements and mask elements. | no | n/a | visual | as rectangle | as specified |