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/min-width | |
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/min-width')
-rw-r--r-- | files/es/web/css/min-width/index.html | 80 |
1 files changed, 80 insertions, 0 deletions
diff --git a/files/es/web/css/min-width/index.html b/files/es/web/css/min-width/index.html new file mode 100644 index 0000000000..efe24d19b1 --- /dev/null +++ b/files/es/web/css/min-width/index.html @@ -0,0 +1,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> |