aboutsummaryrefslogtreecommitdiff
path: root/files/es/web/css/widows/index.html
blob: 98d7242402211164729aec61be02a9fe51555dda (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
---
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 &lt;enteros&gt; */
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("&lt;integer&gt;")}}</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>

{{csssyntax}}

<h2 id="Ejemplo">Ejemplo</h2>

<h3 id="HTML">HTML</h3>

<pre class="brush: html">&lt;div&gt;
  &lt;p&gt;Este es el primer paragrafo que contiene algun texto.&lt;/p&gt;
  &lt;p&gt;Este es el segundo paragrafo que contiene algún texto mayor que el primero. Es usado para desmostrar como trabaja widows.&lt;/p&gt;
  &lt;p&gt;Este es el tercer paragrafo. Es un poco mas extenso en texto que el primero.&lt;/p&gt;
&lt;/div&gt;
</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>