The mask-border-outset
CSS property specifies the distance by which an element's mask border is set out from its border box.
The mask-border-outset
CSS property specifies the distance by which an element's mask border is set out from its border box.
/* <length> value */ mask-border-outset: 1rem; /* <number> value */ mask-border-outset: 1.5; /* top and bottom | left and right */ mask-border-outset: 1 1.2; /* top | left and right | bottom */ mask-border-outset: 30px 2 45px; /* top | right | bottom | left */ mask-border-outset: 7px 12px 14px 5px; /* Global values */ mask-border-outset: inherit; mask-border-outset: initial; mask-border-outset: revert; mask-border-outset: revert-layer; mask-border-outset: unset;
The mask-border-outset
property may be specified as one, two, three, or four values. Each value is a <length>
or <number>
. Negative values are invalid.
<length>
The size of the mask border outset as a dimension.
<number>
The size of the mask border outset as a multiple of the corresponding border-width
.
Initial value | 0 |
---|---|
Applies to | all elements; In SVG, it applies to container elements excluding the <defs> element and all graphics elements |
Inherited | no |
Computed value | as specified, but with relative lengths converted into absolute lengths |
Animation type | discrete |
This property doesn't appear to be supported anywhere yet. When it eventually starts to be supported, it will serve to move the mask away from the inner edge of the element's border box — you can use it to make the mask start from part way across the border, rather than the inside of it.
mask-border-outset: 1rem;
Chromium-based browsers support an outdated version of this property — mask-box-image-outset
— with a prefix:
-webkit-mask-box-image-outset: 1rem;
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.
Specification |
---|
CSS Masking Module Level 1 # the-mask-border-outset |
Desktop | Mobile | |||||||||||
---|---|---|---|---|---|---|---|---|---|---|---|---|
Chrome | Edge | Firefox | Internet Explorer | Opera | Safari | WebView Android | Chrome Android | Firefox for Android | Opera Android | Safari on IOS | Samsung Internet | |
mask-border-outset |
1 | 79 | NoSee bug 877294. |
No | 15 | 3.1 | 4.4 | 18 | NoSee bug 877294. |
14 | 3 | 1.0 |
© 2005–2023 MDN contributors.
Licensed under the Creative Commons Attribution-ShareAlike License v2.5 or later.
https://developer.mozilla.org/en-US/docs/Web/CSS/mask-border-outset