mask-border-width
Quick Summary for mask-border-width
The mask-border-width CSS property sets the width of an element's mask border.
Code Usage for mask-border-width
/* Keyword value */ mask-border-width: auto;  /* <length> value */ mask-border-width: 1rem;  /* <percentage> value */ mask-border-width: 25%;  /* <number> value */ mask-border-width: 3;  /* vertical | horizontal */ mask-border-width: 2em 3em;  /* top | horizontal | bottom */ mask-border-width: 5% 15% 10%;  /* top | right | bottom | left */ mask-border-width: 5% 2em 10% auto;  /* Global values */ mask-border-width: inherit; mask-border-width: initial; mask-border-width: revert; mask-border-width: unset; 
More Details for mask-border-width

mask-border-width

The mask-border-width CSS property sets the width of an element's mask border.

Syntax

/* Keyword value */ mask-border-width: auto;  /* <length> value */ mask-border-width: 1rem;  /* <percentage> value */ mask-border-width: 25%;  /* <number> value */ mask-border-width: 3;  /* vertical | horizontal */ mask-border-width: 2em 3em;  /* top | horizontal | bottom */ mask-border-width: 5% 15% 10%;  /* top | right | bottom | left */ mask-border-width: 5% 2em 10% auto;  /* Global values */ mask-border-width: inherit; mask-border-width: initial; mask-border-width: revert; mask-border-width: unset; 

The mask-border-width property may be specified using one, two, three, or four values chosen from the list of values below.

When one value is specified, it applies the same width to all four sides. When two values are specified, the first width applies to the top and bottom, the second to the left and right. When three values are specified, the first width applies to the top, the second to the left and right, the third to the bottom. When four values are specified, the widths apply to the top, right, bottom, and left in that order (clockwise).

Values

<length-percentage>

The width of the mask border, specified as a <length> or a <percentage>. Percentages are relative to the width of the border area for horizontal offsets and the height of the border area for vertical offsets. Must not be negative.

<number>

The width of the mask border, specified as a multiple of the corresponding border-width. Must not be negative.

auto

The width of the mask border is made equal to the intrinsic width or height (whichever is applicable) of the corresponding mask-border-slice. If the image does not have the required intrinsic dimension, the corresponding border-width is used instead.

Formal definition

Initial valueauto
Applies toall elements; In SVG, it applies to container elements excluding the defs element and all graphics elements
Inheritedno
Percentagesrelative to width/height of the mask border image area
Computed valueas specified, but with relative lengths converted into absolute lengths
Animation typediscrete

Formal syntax

[ <length-percentage> | <number> | auto ]{1,4}

where <length-percentage> = <length> | <percentage>

Examples

Basic usage

This property doesn't appear to be supported anywhere yet. When it eventually starts to be supported, it will serve to define the width of the border mask — setting this to a different value to mask-border-slice will cause the slices to be scaled to fit the border mask.

mask-border-width: 30 fill; 

Chromium-based browsers support an outdated version of this property — mask-box-image-width — with a prefix:

-webkit-mask-box-image-width: 20px; 

Note: The mask-border page features a working example (using the out-of-date prefixed border mask properties supported in Chromium), so you can get an idea of the effect.

Specifications

Specification
CSS Masking Module Level 1 # the-mask-border-width

See also

mask-border mask-border-mode mask-border-outset mask-border-repeat mask-border-source

Last modified: Aug 12, 2021, by MDN contributors

Select your preferred language English (US)Franç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

Please dont do this! 😜


Unknown Web Developer
Random CSS Property

inset-block

The inset-block CSS property defines the logical block start and end offsets of an element, which maps to physical offsets depending on the element's writing mode, directionality, and text orientation. It corresponds to the top and bottom, or right and left properties depending on the values defined for writing-mode, direction, and text-orientation.
inset-block css reference