aboutsummaryrefslogtreecommitdiff
path: root/files/es/web/css/_colon_nth-child
diff options
context:
space:
mode:
authorPeter Bengtsson <mail@peterbe.com>2020-12-08 14:41:45 -0500
committerPeter Bengtsson <mail@peterbe.com>2020-12-08 14:41:45 -0500
commit1109132f09d75da9a28b649c7677bb6ce07c40c0 (patch)
tree0dd8b084480983cf9f9680e8aedb92782a921b13 /files/es/web/css/_colon_nth-child
parent4b1a9203c547c019fc5398082ae19a3f3d4c3efe (diff)
downloadtranslated-content-1109132f09d75da9a28b649c7677bb6ce07c40c0.tar.gz
translated-content-1109132f09d75da9a28b649c7677bb6ce07c40c0.tar.bz2
translated-content-1109132f09d75da9a28b649c7677bb6ce07c40c0.zip
initial commit
Diffstat (limited to 'files/es/web/css/_colon_nth-child')
-rw-r--r--files/es/web/css/_colon_nth-child/index.html188
1 files changed, 188 insertions, 0 deletions
diff --git a/files/es/web/css/_colon_nth-child/index.html b/files/es/web/css/_colon_nth-child/index.html
new file mode 100644
index 0000000000..19e024c8ff
--- /dev/null
+++ b/files/es/web/css/_colon_nth-child/index.html
@@ -0,0 +1,188 @@
+---
+title: ':nth-child'
+slug: 'Web/CSS/:nth-child'
+tags:
+ - CSS
+ - Diseño
+ - Pseudo-clase
+ - Referencia
+ - Web
+translation_of: 'Web/CSS/:nth-child'
+---
+<div>{{CSSRef}}</div>
+
+<p>La <a href="/es/docs/Web/CSS">pseudo-clase</a> <strong><code>:nth-child()</code></strong> de <a href="/es/docs/Web/CSS">CSS</a> coincide con uno o más elementos en función de su posición entre un grupo de hermanos.</p>
+
+<pre class="brush: css no-line-numbers">/* Selecciona cada cuarto elemento entre
+ cualquier grupo de hermanos */
+:nth-child(4n) {
+ color: lime;
+}
+</pre>
+
+<h2 id="Syntax" name="Syntax">Sintaxis</h2>
+
+<p>La pseudo-clase <code>nth-child</code> se especifica con un único argumento, que representa el patrón para los elementos coincidentes.</p>
+
+<h3 id="Valores_de_palabras_clave">Valores de palabras clave</h3>
+
+<dl>
+ <dt><code>odd</code></dt>
+ <dd>Representa elementos cuya posición numérica en una serie de hermanos es impar: 1, 3, 5, etc.</dd>
+ <dt><code>even</code></dt>
+ <dd>Representa elementos cuya posición numérica en una serie de hermanos es par: 2, 4, 6, etc.</dd>
+</dl>
+
+<h3 id="Notación_funcional">Notación funcional</h3>
+
+<dl>
+ <dt><code>&lt;An+B&gt;</code></dt>
+ <dd>Representa elementos cuya posición numérica en una serie de hermanos coincide con el patrón <code>An+B</code>, para cada entero positivo o valor cero de <code>n</code>. El índice del primer elemento es <code>1</code>. Los valores <code>A</code> y <code>B</code> deben ser ambos {{cssxref("&lt;integer&gt;")}}.</dd>
+</dl>
+
+<h3 id="Sintaxis_formal">Sintaxis formal</h3>
+
+<pre class="syntaxbox">{{csssyntax}}
+</pre>
+
+<h2 id="Examples" name="Examples">Ejemplos</h2>
+
+<h3 id="Example_selectors" name="Example_selectors">Selectores de ejemplo</h3>
+
+<dl>
+ <dt><code>tr:nth-child(odd)</code> o <code>tr:nth-child(2n+1)</code></dt>
+ <dd>Representa las filas impares de una tabla HTML: 1, 3, 5, etc.</dd>
+ <dt><code>tr:nth-child(even)</code> o <code>tr:nth-child(2n)</code></dt>
+ <dd>Representa las filas pares de una tabla HTML: 2, 4, 6, etc.</dd>
+ <dt><code>:nth-child(7)</code></dt>
+ <dd>Representa el séptimo elemento.</dd>
+ <dt><code>:nth-child(5n)</code></dt>
+ <dd>Representa los elementos 5, 10, 15, etc.</dd>
+ <dt><code>:nth-child(3n+4)</code></dt>
+ <dd>Representa los elementos 4, 7, 10, 13, etc.</dd>
+ <dt><code>:nth-child(-n+3)</code></dt>
+ <dd>Representa los primeros tres elementos entre un grupo de hermanos.</dd>
+ <dt><code>p:nth-child(n)</code></dt>
+ <dd>Representa cada elemento <code>&lt;p&gt;</code> entre un grupo de hermanos. Esto es lo mismo que un simple selector <code>p</code>.</dd>
+ <dt><code>p:nth-child(1)</code> o <code>p:nth-child(0n+1)</code></dt>
+ <dd>Representa cada <code>&lt;p&gt;</code> que es el primer elemento entre un grupo de hermanos. Esto es lo mismo que el selector {{cssxref(":first-child")}}.</dd>
+</dl>
+
+<h3 id="Ejemplo_detallado">Ejemplo detallado</h3>
+
+<h4 id="HTML">HTML</h4>
+
+<pre class="brush:html">&lt;h3&gt;&lt;code&gt;span:nth-child(2n+1)&lt;/code&gt;, SIN un
+ &lt;code&gt;&amp;lt;em&amp;gt;&lt;/code&gt; entre los hijos.&lt;/h3&gt;
+&lt;p&gt;Los hijos 1, 3, 5 y 7 son seleccionados.&lt;/p&gt;
+&lt;div class="first"&gt;
+ &lt;span&gt;Span 1!&lt;/span&gt;
+ &lt;span&gt;Span 2&lt;/span&gt;
+ &lt;span&gt;Span 3!&lt;/span&gt;
+ &lt;span&gt;Span 4&lt;/span&gt;
+ &lt;span&gt;Span 5!&lt;/span&gt;
+ &lt;span&gt;Span 6&lt;/span&gt;
+ &lt;span&gt;Span 7!&lt;/span&gt;
+&lt;/div&gt;
+
+&lt;br&gt;
+
+&lt;h3&gt;&lt;code&gt;span:nth-child(2n+1)&lt;/code&gt;, CON un
+ &lt;code&gt;&amp;lt;em&amp;gt;&lt;/code&gt; entre los hijos.&lt;/h3&gt;
+&lt;p&gt;Los hijos 1, 5 y 7 son seleccionados.&lt;br&gt;
+ 3 se usa en el conteo porque es un hijo, pero
+ no se selecciona porque no es un &lt;code&gt;&amp;lt;span&amp;gt;&lt;/code&gt;.&lt;/p&gt;
+&lt;div class="second"&gt;
+ &lt;span&gt;Span!&lt;/span&gt;
+ &lt;span&gt;Span&lt;/span&gt;
+ &lt;em&gt;Este es un `em`.&lt;/em&gt;
+ &lt;span&gt;Span&lt;/span&gt;
+ &lt;span&gt;Span!&lt;/span&gt;
+ &lt;span&gt;Span&lt;/span&gt;
+ &lt;span&gt;Span!&lt;/span&gt;
+ &lt;span&gt;Span&lt;/span&gt;
+&lt;/div&gt;
+
+&lt;br&gt;
+
+&lt;h3&gt;&lt;code&gt;span:nth-of-type(2n+1)&lt;/code&gt;, CON un
+ &lt;code&gt;&amp;lt;em&amp;gt;&lt;/code&gt; entre los hijos.&lt;/h3&gt;
+&lt;p&gt;Los hijos 1, 4, 6 y 8 son seleccionados.&lt;br&gt;
+ 3 no se usa en el conteo ni se selecciona porque es un &lt;code&gt;&amp;lt;em&amp;gt;&lt;/code&gt;,
+ no un &lt;code&gt;&amp;lt;span&amp;gt;&lt;/code&gt;, y &lt;code&gt;nth-of-type&lt;/code&gt; solo selecciona
+ hijos de ese tipo. El &lt;code&gt;&amp;lt;em&amp;gt;&lt;/code&gt; se omite por completo y se ignora.&lt;/p&gt;
+&lt;div class="third"&gt;
+ &lt;span&gt;Span!&lt;/span&gt;
+ &lt;span&gt;Span&lt;/span&gt;
+ &lt;em&gt;Este es un `em`.&lt;/em&gt;
+ &lt;span&gt;Span!&lt;/span&gt;
+ &lt;span&gt;Span&lt;/span&gt;
+ &lt;span&gt;Span!&lt;/span&gt;
+ &lt;span&gt;Span&lt;/span&gt;
+ &lt;span&gt;Span!&lt;/span&gt;
+&lt;/div&gt;
+</pre>
+
+<h4 id="CSS">CSS</h4>
+
+<pre class="brush: css">html {
+ font-family: sans-serif;
+}
+
+span,
+div em {
+ padding: 5px;
+ border: 1px solid green;
+ display: inline-block;
+ margin-bottom: 3px;
+}
+
+.first span:nth-child(2n+1),
+.second span:nth-child(2n+1),
+.third span:nth-of-type(2n+1) {
+ background-color: lime;
+}</pre>
+
+<h4 id="Resultado">Resultado</h4>
+
+<p>{{EmbedLiveSample('Ejemplo_detallado', 550, 550)}}</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('CSS4 Selectors', '#nth-child-pseudo', ':nth-child')}}</td>
+ <td>{{Spec2('CSS4 Selectors')}}</td>
+ <td>
+ <p>Agrega la sintaxis <code>of &lt;selector&gt;</code> y especifica que no se requiere que los elementos coincidentes tengan un padre.</p>
+ </td>
+ </tr>
+ <tr>
+ <td>{{SpecName('CSS3 Selectors', '#nth-child-pseudo', ':nth-child')}}</td>
+ <td>{{Spec2('CSS3 Selectors')}}</td>
+ <td>Definición Inicial.</td>
+ </tr>
+ </tbody>
+</table>
+
+<h2 id="Compatibilidad_con_navegadores">Compatibilidad con navegadores</h2>
+
+<div>
+
+
+<p>{{Compat("css.selectors.nth-child")}}</p>
+</div>
+
+<h2 id="See_also" name="See_also">Ver también</h2>
+
+<ul>
+ <li>{{ Cssxref(":nth-of-type") }}, {{ Cssxref(":nth-last-child") }}</li>
+</ul>