blob: efe24d19b1f6f8289b7bc819d0cfcd584792cf45 (
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
|
---
title: min-width
slug: Web/CSS/min-width
tags:
- Referencia_CSS
translation_of: Web/CSS/min-width
---
<p>{{ CSSRef() }}</p>
<h3 id="Sumario" name="Sumario">Sumario</h3>
<p>La propiedad <code>min-width</code> se usa para determinar la anchura mínima de un elemento. Previene que la propiedad {{ Cssxref("width") }} pueda ser inferior que <code>min-width</code>.</p>
<ul>
<li>{{ Xref_cssinitial() }}: 0</li>
<li>Aplicable a: elementos de tipo bloque.</li>
<li>{{ Xref_cssinherited() }}: no</li>
<li>Porcentajes: se refieren a la anchura del bloque contenedor.</li>
<li>Media: {{ Xref_cssvisual() }}</li>
<li>{{ Xref_csscomputed() }}:</li>
</ul>
<h3 id="Sintaxis" name="Sintaxis">Sintaxis</h3>
<p>min-width: <longitud> | <porcentaje> | -moz-max-content | -moz-min-content | -moz-fit-content | -moz-available</p>
<h3 id="Valores" name="Valores">Valores</h3>
<ul>
<li><strong>length</strong> : puede ser expresado en px, cm, in</li>
<li><strong>percentage</strong> : expresado con "%" es un porcentaje del ancho del elemento contenedor.</li>
<li><strong>-moz-max-content</strong> : el ancho intrínseco preferido {{ Fx_minversion_inline(3) }}</li>
<li><strong>-moz-min-content</strong> : el ancho intrínseco mínimo {{ Fx_minversion_inline(3) }}</li>
<li><strong>-moz-available</strong> : el ancho del contenedor menos el margen horizontal, borde y padding {{ Fx_minversion_inline(3) }}</li>
<li><strong>-moz-fit-content</strong> : igual que <code>-moz-min-content</code> {{ Fx_minversion_inline(3) }}</li>
</ul>
<h3 id="Ejemplos" name="Ejemplos">Ejemplos</h3>
<pre>table{min-width: 75%;}
form{min-width: 0;}
</pre>
<h3 id="Notas" name="Notas">Notas</h3>
<p>{{ Cssxref("min-width") }} sobrescribe los valores de {{ Cssxref("max-width") }} y {{ Cssxref("width") }}.</p>
<h3 id="Especificaciones" name="Especificaciones">Especificaciones</h3>
<ul>
<li><a class="external" href="http://www.w3.org/TR/CSS2/visudet.html#min-max-widths">CSS 2.1</a></li>
</ul>
<h3 id="Compatibilidad_entre_navegadores" name="Compatibilidad_entre_navegadores">Compatibilidad entre navegadores</h3>
<table class="standard-table">
<tbody>
<tr>
<th>Navegador</th>
<th>Versión mínima</th>
</tr>
<tr>
<td>Internet Explorer</td>
<td>6</td>
</tr>
<tr>
<td>Netscape</td>
<td>6</td>
</tr>
<tr>
<td>Opera</td>
<td>3.5</td>
</tr>
</tbody>
</table>
<h3 id="Ver_tambi.C3.A9n" name="Ver_tambi.C3.A9n">Ver también</h3>
<p><a href="es/CSS/box_model">box model</a>, {{ Cssxref("min-height") }}, {{ Cssxref("-moz-box-sizing") }}, {{ Cssxref("width") }}, {{ Cssxref("max-width") }}</p>
|