diff options
Diffstat (limited to 'files/es/web/css/border-bottom-width/index.html')
-rw-r--r-- | files/es/web/css/border-bottom-width/index.html | 113 |
1 files changed, 113 insertions, 0 deletions
diff --git a/files/es/web/css/border-bottom-width/index.html b/files/es/web/css/border-bottom-width/index.html new file mode 100644 index 0000000000..5550344a75 --- /dev/null +++ b/files/es/web/css/border-bottom-width/index.html @@ -0,0 +1,113 @@ +--- +title: border-bottom-width +slug: Web/CSS/border-bottom-width +tags: + - CSS + - 'CSS:Referencias' + - Todas_las_Categorías +translation_of: Web/CSS/border-bottom-width +--- +<p> </p> + +<p><< <a href="/es/Guía_de_referencia_de_CSS" title="es/Guía_de_referencia_de_CSS">Volver</a></p> + +<h3 id="Resumen" name="Resumen">Resumen</h3> + +<p><code>border-bottom-width</code> define el ancho del borde inferior de una caja.</p> + +<ul> + <li>{{ Cssxref("initial", "Valor inicial") }}: {{ Cssxref("medium", "medio") }}</li> + <li>Se aplica a : todos los elementos</li> + <li>{{ Cssxref("inheritance", "Valor heredado") }}: no</li> + <li>Porcentajes: N/A</li> + <li>Medio: {{ Xref_cssvisual() }}</li> + <li>{{ Cssxref("computed value", "Valor calculado") }}: largo absoluto o '0' si el estilo es <code>none</code> o <code>hidden</code>.</li> +</ul> + +<h3 id="Sintaxis" name="Sintaxis">Sintaxis</h3> + +<pre class="eval">border-bottom-width: <border-width> | inherit +</pre> + +<h3 id="Valores" name="Valores">Valores</h3> + +<dl> + <dt>thin</dt> + <dd>un borde fino.</dd> + <dt>medium</dt> + <dd>un borde mediano.</dd> + <dt>thick</dt> + <dd>un borde grueso.</dd> + <dt><length></dt> + <dd>El espesor de un borde tiene un valor explícito. los anchos de borde no pueden ser negativos.<br> + Nota : El valor <code>em</code> también es soportada.</dd> +</dl> + +<h3 id="Propiedades_relacionadas" name="Propiedades_relacionadas">Propiedades relacionadas</h3> + +<ul> + <li>{{ Cssxref("border-left-style") }}</li> + <li>{{ Cssxref("border-right-style") }}</li> + <li>{{ Cssxref("border-top-style") }}</li> + <li>{{ Cssxref("border-style") }}</li> +</ul> + +<h3 id="Ejemplos" name="Ejemplos">Ejemplos</h3> + +<p><a href="/samples/cssref/border.html">Ver El Ejemplo Vivo</a></p> + +<pre>element { + border-bottom-width: thin; + border-bottom-style: solid; + border-bottom-color: #000; +} +</pre> + +<h3 id="Especificacions" name="Especificacions">Especificacions</h3> + +<ul> + <li><a class="external" href="http://www.w3.org/TR/CSS1#border-width">CSS 1</a></li> + <li><a class="external" href="http://www.w3.org/TR/CSS21/box.html#border-width-properties">CSS 2.1</a></li> + <li><a class="external" href="http://www.w3.org/TR/css3-background/#border-width">CSS 3</a></li> +</ul> + +<h3 id="Compatibilidades" name="Compatibilidades">Compatibilidades</h3> + +<table class="standard-table"> + <tbody> + <tr> + <th>Navegador</th> + <th>Versión mínima</th> + </tr> + <tr> + <td>Internet Explorer</td> + <td> </td> + </tr> + <tr> + <td>Firefox</td> + <td> </td> + </tr> + <tr> + <td>Netscape</td> + <td> </td> + </tr> + <tr> + <td>Opera</td> + <td> </td> + </tr> + </tbody> +</table> + +<h3 id="Ver_tambi.C3.A9n" name="Ver_tambi.C3.A9n">Ver también</h3> + +<p>{{ Cssxref("border-bottom") }}, {{ Cssxref("border-color") }}, {{ Cssxref("border-bottom-style") }}, {{ Cssxref("border-bottom-width") }}</p> + +<p> </p> + +<div class="noinclude"> +<p><span class="comment">Categorías</span></p> + +<p><span class="comment">Interwiki Languages</span></p> +</div> + +<p>{{ languages( { "de": "de/CSS/border-bottom-width", "en": "en/CSS/border-bottom-width", "pl": "pl/CSS/border-bottom-width", "fr": "fr/CSS/border-bottom-width", "ja": "ja/CSS/border-bottom-width" } ) }}</p> |