aboutsummaryrefslogtreecommitdiff
path: root/files/es/web/css/-webkit-mask-position/index.html
blob: 60a7231da33235e7d0f32e4eae6dba98e21ef0f1 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
---
title: '-webkit-mask-position'
slug: Web/CSS/-webkit-mask-position
tags:
  - CSS
  - No estándar(2)
  - Propiedad CSS
  - Referencia CSS
translation_of: Web/CSS/mask-position
translation_of_original: Web/CSS/-webkit-mask-position
---
<div>{{CSSRef}}{{Non-standard_header}}</div>

<h2 id="Sumario">Sumario</h2>

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

<p>{{cssinfo}}</p>

<h2 id="Síntaxis">Síntaxis</h2>

<pre class="syntaxbox">{{csssyntax}}</pre>

<h2 id="Valores">Valores</h2>

<p> Acepta uno o dos valores.  Se permiten valores negativos para {{cssxref("&lt;percentage&gt;")}} y {{cssxref("&lt;length&gt;")}}.</p>

<ul>
 <li>Si sólo se especifica un valor, el segundo valor se supone que es center.</li>
 <li>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).</li>
</ul>

<dl>
 <dt><code>&lt;percentage&gt;</code></dt>
 <dd>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.</dd>
 <dt><code>&lt;length&gt;</code></dt>
 <dd>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.</dd>
 <dt><code><strong>top</strong></code></dt>
 <dd>Equivalente al 0% para la posición vertical.</dd>
 <dt><code><strong>right</strong></code></dt>
 <dd>Equivalente al 100% para la posición horizontal.</dd>
 <dt><code><strong>bottom</strong></code></dt>
 <dd>Equivalente al 100% para la posición vertical.</dd>
 <dt><code><strong>left</strong></code></dt>
 <dd>Equivalente al 0% para la posición horizontal.</dd>
 <dt><code><strong>center</strong></code></dt>
 <dd>Equivalente al 50% para la posición horizontal si no se da otra forma, o 50% para la posición vertical si lo es.</dd>
</dl>

<h2 id="Ejemplos">Ejemplos</h2>

<pre class="brush:css">.exampleOne {
  -webkit-mask-image: url(mask.png);
  -webkit-mask-position: bottom right;
}

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

<h2 id="Especificaciones">Especificaciones</h2>

<p>No forma parte de ninguna especificación.</p>

<h2 id="Compatibilidad_con_los_distintos_nevegadores">Compatibilidad con los distintos nevegadores</h2>

<p>{{CompatibilityTable}}</p>

<div id="compat-desktop">
<table class="compat-table">
 <tbody>
  <tr>
   <th>Características</th>
   <th>Chrome</th>
   <th>Firefox (Gecko)</th>
   <th>Internet Explorer</th>
   <th>Opera</th>
   <th>Safari (WebKit)</th>
  </tr>
  <tr>
   <td>Soporte Básico</td>
   <td>1.0</td>
   <td>{{CompatNo}}</td>
   <td>{{CompatNo}}</td>
   <td>{{CompatNo}}</td>
   <td>4.0</td>
  </tr>
 </tbody>
</table>
</div>

<div id="compat-mobile">
<table class="compat-table">
 <tbody>
  <tr>
   <th>Características</th>
   <th>Android</th>
   <th>Firefox Mobile (Gecko)</th>
   <th>IE Phone</th>
   <th>Opera Mobile</th>
   <th>Safari Mobile</th>
  </tr>
  <tr>
   <td>Soporte Básico</td>
   <td>{{CompatUnknown}}</td>
   <td>{{CompatNo}}</td>
   <td>{{CompatNo}}</td>
   <td>{{CompatNo}}</td>
   <td>{{CompatUnknown}}</td>
  </tr>
 </tbody>
</table>
</div>

<h2 id="Ver_tambien">Ver tambien</h2>

<p>{{cssxref("-webkit-mask-origin")}}, {{cssxref("-webkit-mask-box-image")}}, {{cssxref("-webkit-mask-attachment")}}, {{cssxref("-webkit-mask-clip")}}, {{cssxref("-webkit-mask-image")}}, {{cssxref("-webkit-mask-composite")}}, {{cssxref("-webkit-mask-repeat")}}</p>