aboutsummaryrefslogtreecommitdiff
path: root/files/es/web/css/_colon_indeterminate/index.html
diff options
context:
space:
mode:
Diffstat (limited to 'files/es/web/css/_colon_indeterminate/index.html')
-rw-r--r--files/es/web/css/_colon_indeterminate/index.html134
1 files changed, 134 insertions, 0 deletions
diff --git a/files/es/web/css/_colon_indeterminate/index.html b/files/es/web/css/_colon_indeterminate/index.html
new file mode 100644
index 0000000000..ff56f97c85
--- /dev/null
+++ b/files/es/web/css/_colon_indeterminate/index.html
@@ -0,0 +1,134 @@
+---
+title: ':indeterminate'
+slug: 'Web/CSS/:indeterminate'
+tags:
+ - CSS
+ - Diseño
+ - Pseudo-clase
+ - Referencia
+ - Web
+translation_of: 'Web/CSS/:indeterminate'
+---
+<div>{{CSSRef}}</div>
+
+<p>La <a href="/es/docs/Web/CSS/Pseudo-classes">pseudo-clase</a> <strong><code>:indeterminate</code></strong> de <a href="/es/docs/Web/CSS">CSS</a> representa cualquier elemento de formulario cuyo estado sea indeterminado.</p>
+
+<pre class="brush: css no-line-numbers">/* Selecciona cualquier &lt;input&gt; cuyo estado sea indeterminado */
+input:indeterminate {
+ background: lime;
+}</pre>
+
+<p>Los elementos seleccionados por este selector son:</p>
+
+<ul>
+ <li>Elementos <code><a href="/es/docs/Web/HTML/Element/input/checkbox">&lt;input type="checkbox"&gt;</a></code> cuya propiedad <code>indeterminate</code> se establece en <code>true</code> por <a href="/es/docs/Web/JavaScript">JavaScript</a></li>
+ <li>Elementos <code><a href="/es/docs/Web/HTML/Element/input/radio">&lt;input type="radio"&gt;</a></code>, cuando todos los radio buttons con el mismo valor <code>name</code> en el formulario no están marcados</li>
+ <li>Elementos {{HTMLElement("progress")}} en un estado indeterminado</li>
+</ul>
+
+<h2 id="Sintaxis">Sintaxis</h2>
+
+<pre class="syntaxbox">{{csssyntax}}</pre>
+
+<h2 id="Ejemplos">Ejemplos</h2>
+
+<h3 id="Checkbox_y_radio_button">Checkbox y radio button</h3>
+
+<p>Este ejemplo aplica estilos especiales a las etiquetas asociadas con campos de formulario indeterminados.</p>
+
+<h4 id="HTML">HTML</h4>
+
+<pre class="brush: html">&lt;div&gt;
+ &lt;input type="checkbox" id="checkbox"&gt;
+ &lt;label for="checkbox"&gt;Esta etiqueta comienza con el color lima.&lt;/label&gt;
+&lt;/div&gt;
+&lt;div&gt;
+ &lt;input type="radio" id="radio"&gt;
+ &lt;label for="radio"&gt;Esta etiqueta comienza con el color lima.&lt;/label&gt;
+&lt;/div&gt;</pre>
+
+<h4 id="CSS">CSS</h4>
+
+<pre class="brush: css; hightlight[5]">input:indeterminate + label {
+ background: lime;
+}
+</pre>
+
+<h4 id="JavaScript">JavaScript</h4>
+
+<pre class="brush: js">var inputs = document.getElementsByTagName("input");
+
+for (var i = 0; i &lt; inputs.length; i++) {
+ inputs[i].indeterminate = true;
+}
+</pre>
+
+<h3 id="Resultado">Resultado</h3>
+
+<p>{{EmbedLiveSample('Checkbox_y_radio_button', 'auto', 50)}}</p>
+
+<h3 id="Barra_de_progreso">Barra de progreso</h3>
+
+<h4 id="HTML_2">HTML</h4>
+
+<pre class="brush: html">&lt;progress&gt;
+</pre>
+
+<h4 id="CSS_2">CSS</h4>
+
+<pre class="brush: css; hightlight[5]">progress {
+ margin: 4px;
+}
+
+progress:indeterminate {
+ opacity: 0.5;
+ background-color: lightgray;
+ box-shadow: 0 0 2px 1px red;
+}
+</pre>
+
+<h3 id="Resultado_2">Resultado</h3>
+
+<p>{{EmbedLiveSample('Barra_de_progreso', 'auto', 30)}}</p>
+
+<h2 id="Especificaciones">Especificaciones</h2>
+
+<table class="standard-table">
+ <thead>
+ <tr>
+ <th scope="col">Especificación</th>
+ <th scope="col">Estado</th>
+ <th scope="col">Comentarios</th>
+ </tr>
+ </thead>
+ <tbody>
+ <tr>
+ <td>{{SpecName('HTML WHATWG', '#selector-indeterminate', ':indeterminate')}}</td>
+ <td>{{Spec2('HTML WHATWG')}}</td>
+ <td>Ningún cambio.</td>
+ </tr>
+ <tr>
+ <td>{{SpecName('HTML5 W3C', '#selector-indeterminate', ':indeterminate')}}</td>
+ <td>{{Spec2('HTML5 W3C')}}</td>
+ <td>Define la semántica de HTML y la validación de restricciones.</td>
+ </tr>
+ <tr>
+ <td>{{SpecName('CSS4 Selectors', '#indeterminate', ':indeterminate')}}</td>
+ <td>{{Spec2('CSS4 Selectors')}}</td>
+ <td>Ningún cambio.</td>
+ </tr>
+ <tr>
+ <td>{{SpecName('CSS3 Basic UI', '#indeterminate', ':indeterminate')}}</td>
+ <td>{{Spec2('CSS3 Basic UI')}}</td>
+ <td>Define la pseudo-clase, pero no la semántica asociada.</td>
+ </tr>
+ </tbody>
+</table>
+
+<h2 id="Compatibilidad_con_navegadores">Compatibilidad con navegadores</h2>
+
+<div>
+
+
+<p>{{Compat("css.selectors.indeterminate")}}</p>
+</div>