Please note, this is a STATIC archive of website developer.mozilla.org from 03 Nov 2016, cach3.com does not collect or store any user information, there is no "phishing" involved.

-webkit-mask-position

No estándar
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.

Sumario

la propiedad CSS -webkit-mask-position fija la posición inicial de una máscara de imagen.

Valor inicial0% 0%
Applies toall elements
Heredableno
Percentagesrefer to the size of the box itself
Mediavisual
Valor calculadofor length the absolute value, otherwise a percentage
Animatableno
Canonical orderorder of appearance in the formal grammar of the values

Síntaxis

<mask-position>[, <mask-position>]*

where
<mask-position> = [ <percentage> | <length> | left | center | right ] [ <percentage> | <length> | top | center | bottom ]?

Valores

 Acepta uno o dos valores.  Se permiten valores negativos para <percentage> y <length>.

  • Si sólo se especifica un valor, el segundo valor se supone que es center.
  • El primer valor representa la posición horizontal y el segundo la posición vertical (si al menos un valor no es una palabra clave).
<percentage>
Con un par de valores  0% 0%,  (es igual a 0 0) la esquina superior izquierda de la imagen se alinea con la esquina superior izquierda del borde del relleno del cuadro. Un valor par de 100% 100% coloca la esquina inferior derecha de la imagen  en la esquina inferior derecha del zona del relleno. Con un par de valores de 14% 84%, el punto del 14%  a lo largo y el 84% hacia abajo de la imagen son situados el punto del 14%  a lo largo y el 84% del área del relleno.
<length>
Con un par de valores 2cm 1cm, la esquina superior izquierda de la imagen se coloca a 2cm a la derecha y 1cm por debajo de la esquina superior izquierda del área del relleno.
top
Equivalente al 0% para la posición vertical.
right
Equivalente al 100% para la posición horizontal.
bottom
Equivalente al 100% para la posición vertical.
left
Equivalente al 0% para la posición horizontal.
center
Equivalente al 50% para la posición horizontal si no se da otra forma, o 50% para la posición vertical si lo es.

Ejemplos

.exampleOne {
  -webkit-mask-image: url(mask.png);
  -webkit-mask-position: bottom right;
}

.exampleTwo {
  -webkit-mask-image: url(mask.png);
  -webkit-mask-position: 25%;
} 

Especificaciones

No forma parte de ninguna especificación.

Compatibilidad con los distintos nevegadores

Características Chrome Firefox (Gecko) Internet Explorer Opera Safari (WebKit)
Soporte Básico 1.0 No support No support No support 4.0
Características Android Firefox Mobile (Gecko) IE Phone Opera Mobile Safari Mobile
Soporte Básico ? No support No support No support ?

Ver tambien

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

Etiquetas y colaboradores del documento

 Colaboradores en esta página: Simplexible, Prinz_Rana, pekechis, Kuiki
 Última actualización por: Simplexible,