diff options
author | Peter Bengtsson <mail@peterbe.com> | 2020-12-08 14:41:45 -0500 |
---|---|---|
committer | Peter Bengtsson <mail@peterbe.com> | 2020-12-08 14:41:45 -0500 |
commit | 1109132f09d75da9a28b649c7677bb6ce07c40c0 (patch) | |
tree | 0dd8b084480983cf9f9680e8aedb92782a921b13 /files/es/web/css/widows | |
parent | 4b1a9203c547c019fc5398082ae19a3f3d4c3efe (diff) | |
download | translated-content-1109132f09d75da9a28b649c7677bb6ce07c40c0.tar.gz translated-content-1109132f09d75da9a28b649c7677bb6ce07c40c0.tar.bz2 translated-content-1109132f09d75da9a28b649c7677bb6ce07c40c0.zip |
initial commit
Diffstat (limited to 'files/es/web/css/widows')
-rw-r--r-- | files/es/web/css/widows/index.html | 113 |
1 files changed, 113 insertions, 0 deletions
diff --git a/files/es/web/css/widows/index.html b/files/es/web/css/widows/index.html new file mode 100644 index 0000000000..bcc8bba968 --- /dev/null +++ b/files/es/web/css/widows/index.html @@ -0,0 +1,113 @@ +--- +title: widows +slug: Web/CSS/widows +translation_of: Web/CSS/widows +--- +<div>{{CSSRef}}</div> + +<p>La propiedad <a href="/en-US/docs/CSS" title="CSS">CSS</a> <strong><code>widows</code></strong> especifica el número minimo de lineas en un contenedor de bloques que se deben mostrar en la parte superior de la <a href="/en-US/docs/Web/CSS/Paged_Media">pagina</a>, region o <a href="/en-US/docs/Web/CSS/CSS_Columns">columna</a>. Esta propiedad se usa normalmente para controlar como se producen las pausas. </p> + +<pre class="brush:css no-line-numbers">/* valores <enteros> */ +widows: 2; +widows: 3; + +/* valores globales */ +widows: inherit; +widows: initial; +widows: unset; +</pre> + +<div class="note"> +<p>En la tipografia, un <em>widow</em> is la ultima linea de un paragrafo que aparece solo en la parte superior de la pagina.</p> +</div> + +<p>{{cssinfo}}</p> + +<h2 id="Sintaxis">Sintaxis</h2> + +<h3 id="Valores">Valores</h3> + +<dl> + <dt>{{cssxref("<integer>")}}</dt> + <dd>The minimum number of lines that can stay by themselves at the top of a new fragment after a fragmentation break. The value must be positive.</dd> +</dl> + +<h3 id="Sintaxis_Formal">Sintaxis Formal</h3> + +<pre class="syntaxbox">{{csssyntax}}</pre> + +<h2 id="Ejemplo">Ejemplo</h2> + +<h3 id="HTML">HTML</h3> + +<pre class="brush: html"><div> + <p>Este es el primer paragrafo que contiene algun texto.</p> + <p>Este es el segundo paragrafo que contiene algún texto mayor que el primero. Es usado para desmostrar como trabaja widows.</p> + <p>Este es el tercer paragrafo. Es un poco mas extenso en texto que el primero.</p> +</div> +</pre> + +<h3 id="CSS">CSS</h3> + +<pre class="brush: css; highlight[4]">div { + background-color: #8cffa0; + columns: 3; + widows: 2; +} + +p { + background-color: #8ca0ff; +} + +p:first-child { + margin-top: 0; +} +</pre> + +<h3 id="Resultado">Resultado</h3> + +<p>{{EmbedLiveSample("Example", 400, 160)}}</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">Comentario</th> + </tr> + </thead> + <tbody> + <tr> + <td>{{SpecName('CSS3 Fragmentation', '#widows-orphans', 'widows')}}</td> + <td>{{Spec2('CSS3 Fragmentation')}}</td> + <td>Extiende <code>widows</code> para que se apliqye a cualquier tipo de fragmento, incluyendo paginas, regiones o columnas. </td> + </tr> + <tr> + <td>{{SpecName('CSS3 Multicol', '#filling-columns', 'widows')}}</td> + <td>{{Spec2('CSS3 Multicol')}}</td> + <td>Recomendaciones a considerar de <code>widows</code> en relacion con las columnas. </td> + </tr> + <tr> + <td>{{SpecName('CSS2.1', 'page.html#break-inside', 'widows')}}</td> + <td>{{Spec2('CSS2.1')}}</td> + <td>Definición Inicial. </td> + </tr> + </tbody> +</table> + +<h2 id="Compatibilidad_entre_navegadores">Compatibilidad entre navegadores</h2> + +<div> +<div class="hidden">La tabla de compatibilidad en esta pagina esta generada desde una estrutura de datos. Si usted puede contribuir con los datos, por favor verifique aqui <a href="https://github.com/mdn/browser-compat-data">https://github.com/mdn/browser-compat-data</a> y envie una solicitud de extracción. </div> + +<p>{{Compat("css.properties.widows")}}</p> +</div> + +<h2 id="Ver_tambien">Ver tambien</h2> + +<ul> + <li>{{cssxref("orphans")}}</li> + <li><a href="/en-US/docs/Web/CSS/Paged_Media">Medio paginados</a></li> +</ul> |