CSS - -webkit-mask-attachment

If a -webkit-mask-image is specified, -webkit-mask-attachment determines whether the mask image's position is fixed within the viewport, or scrolls along with its containing block.

Example

 

CSS
body {
  -webkit-mask-image: url('images/mask.png');
  -webkit-mask-attachment: fixed;
}

Syntax  

CSS
/* Keyword values */
-webkit-mask-attachment: scroll;
-webkit-mask-attachment: fixed;
-webkit-mask-attachment: local;

/* Multiple values */
-webkit-mask-attachment: scroll, local;
-webkit-mask-attachment: fixed, local, scroll;

/* Global values */
-webkit-mask-attachment: inherit;
-webkit-mask-attachment: initial;
-webkit-mask-attachment: unset;

Values

scroll
If scroll is specified, the mask image scrolls within the viewport along with the block that contains the mask image.
fixed
If fixed is specified, the mask image does not scroll with its containing element, instead remaining stationary within the viewport.

Formal syntax

CSS
<a href="css/-webkit-mask-attachment#attachment"><attachment></a><a href="css/value_definition_syntax#brackets" title="Brackets">[</a>, <a href="css/-webkit-mask-attachment#attachment"><attachment></a><a href="css/value_definition_syntax#brackets" title="Brackets">]</a><a href="css/value_definition_syntax#asterisk_(*)" title="Asterisk">*</a><p>where <br><code><attachment> = scroll <a href="css/value_definition_syntax#single_bar" title="Single bar">|</a> fixed <a href="css/value_definition_syntax#single_bar" title="Single bar">|</a> local</code></p>

Description  

Non-standard
This feature is non-standard and is not on a standards track. Do not use it on production sites facing the Web: it will not work for every user. There may also be large incompatibilities between implementations and the behavior may change in the future.

If a -webkit-mask-image is specified, -webkit-mask-attachment determines whether the mask image's position is fixed within the viewport, or scrolls along with its containing block.

Initial valuescroll
Applies toall elements
Inheritedno
Mediavisual
Computed valueas specified
Animatableno
Canonical orderorder of appearance in the formal grammar of the values

See Also  

-webkit-mask, -webkit-mask-clip, -webkit-mask-box-image, -webkit-mask-origin, -webkit-mask-image, -webkit-mask-composite, -webkit-mask-repeat

 

Feature Chrome Firefox (Gecko) Internet Explorer Opera Safari
Basic support (Yes)
No support 24.0
No support No support No support 4.0
Feature Android Firefox Mobile (Gecko) IE Phone Opera Mobile Safari Mobile
Basic support 2.1 No support No support No support 3.2

License

© 2016 Mozilla Contributors
Licensed under the Creative Commons Attribution-ShareAlike License v2.5 or later.
https://developer.mozilla.org/en-us/docs/web/css/-webkit-mask-attachment

CSS CSS Property Layout Non-standard Reference Web