mask-clip
Quick Summary for mask-clip
The mask-clip CSS property determines the area which is affected by a mask. The painted content of an element must be restricted to this area.
Code Usage for mask-clip
/* <geometry-box> values */ mask-clip: content-box; mask-clip: padding-box; mask-clip: border-box; mask-clip: margin-box; mask-clip: fill-box; mask-clip: stroke-box; mask-clip: view-box;  /* Keyword values */ mask-clip: no-clip;  /* Non-standard keyword values */ -webkit-mask-clip: border; -webkit-mask-clip: padding; -webkit-mask-clip: content; -webkit-mask-clip: text;  /* Multiple values */ mask-clip: padding-box, no-clip; mask-clip: view-box, fill-box, border-box;  /* Global values */ mask-clip: inherit; mask-clip: initial; mask-clip: revert; mask-clip: unset; 
More Details for mask-clip

mask-clip

The mask-clip CSS property determines the area which is affected by a mask. The painted content of an element must be restricted to this area.

/* <geometry-box> values */ mask-clip: content-box; mask-clip: padding-box; mask-clip: border-box; mask-clip: margin-box; mask-clip: fill-box; mask-clip: stroke-box; mask-clip: view-box;  /* Keyword values */ mask-clip: no-clip;  /* Non-standard keyword values */ -webkit-mask-clip: border; -webkit-mask-clip: padding; -webkit-mask-clip: content; -webkit-mask-clip: text;  /* Multiple values */ mask-clip: padding-box, no-clip; mask-clip: view-box, fill-box, border-box;  /* Global values */ mask-clip: inherit; mask-clip: initial; mask-clip: revert; mask-clip: unset; 

Syntax

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

Values

content-box

The painted content is clipped to the content box.

padding-box

The painted content is clipped to the padding box.

border-box

The painted content is clipped to the border box.

margin-box

The painted content is clipped to the margin box.

fill-box

The painted content is clipped to the object bounding box.

stroke-box

The painted content is clipped to the stroke bounding box.

view-box

Uses the nearest SVG viewport as reference box. If a viewBox attribute is specified for the element creating the SVG viewport, the reference box is positioned at the origin of the coordinate system established by the viewBox attribute and the dimension of the reference box is set to the width and height values of the viewBox attribute.

no-clip

The painted content is not clipped.

border

This keyword behaves the same as border-box.

padding

This keyword behaves the same as padding-box.

content

This keyword behaves the same as content-box.

text

This keyword clips the mask image to the text of the element.

Formal definition

Initial valueborder-box
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

[ <geometry-box> | no-clip ]#

where <geometry-box> = <shape-box> | fill-box | stroke-box | view-box

where <shape-box> = <box> | margin-box

where <box> = border-box | padding-box | content-box

Examples

Clipping a mask to the border box

Change the mask-clip value to any of the allowed values detailed above. If viewing the example in a Chromium-based browser change the value of -webkit-mask-clip.

Specifications

Specification
CSS Masking Module Level 1 # the-mask-clip

See also

Clipping and Masking in CSS

Last modified: Aug 12, 2021, by MDN contributors

Select your preferred language English (US)EspañolFrançais日本語 Change language

No Items Found.

Add Comment
Type in a Nick Name here
 
Other Categories in CSS
css
Search CSS
Search CSS by entering your search text above.
Welcome

This is my test area for webdev. I keep a collection of code here, mostly for my reference. Also if i find a good link, i usually add it here and then forget about it. more...

Subscribe to weekly updates about things i have added to the site or thought interesting during the last week.

You could also follow me on twitter or not... does anyone even use twitter anymore?

If you found something useful or like my work, you can buy me a coffee here. Mmm Coffee. ☕

❤️👩‍💻🎮

🪦 2000 - 16 Oct 2022 - Boots
Random Quote
A.A. Milne’s Winnie-the-Pooh: “If you live to be a hundred, I want to live to be a hundred minus one day so I never have to live without you.”
A.A. Milne
Random CSS Property

additive-symbols

The additive-symbols descriptor lets you specify symbols when the value of a counter system descriptor is additive. The additive-symbols descriptor defines additive tuples, each of which is a pair containing a symbol and a non-negative integer weight. The additive system is used to construct sign-value numbering systems such as Roman numerals.
additive-symbols (@counter-style) css reference