From 1109132f09d75da9a28b649c7677bb6ce07c40c0 Mon Sep 17 00:00:00 2001 From: Peter Bengtsson Date: Tue, 8 Dec 2020 14:41:45 -0500 Subject: initial commit --- files/es/web/css/border-bottom/index.html | 117 ++++++++++++++++++++++++++++++ 1 file changed, 117 insertions(+) create mode 100644 files/es/web/css/border-bottom/index.html (limited to 'files/es/web/css/border-bottom/index.html') diff --git a/files/es/web/css/border-bottom/index.html b/files/es/web/css/border-bottom/index.html new file mode 100644 index 0000000000..3b1774513b --- /dev/null +++ b/files/es/web/css/border-bottom/index.html @@ -0,0 +1,117 @@ +--- +title: border-bottom +slug: Web/CSS/border-bottom +tags: + - CSS + - 'CSS:Referencias' + - Todas_las_Categorías +translation_of: Web/CSS/border-bottom +--- +

<< Volver

+ +

Resumen

+ +

La propiedad border-bottom permite de definir de una vez todas las propiedades individuales {{ Cssxref("border-bottom-color") }}, {{ Cssxref("border-bottom-style") }}, y {{ Cssxref("border-bottom-width") }}, las cuales describen el color, estilo y ancho del borde inferior de un elementos.

+ + + +

Sintaxis

+ +
border-bottom: [ <border-width> || <border-style> || <border-color> ] | inherit
+
+ +

Valores

+ +
+
<border-width> 
+
ver {{ Cssxref("border-bottom-width") }}.
+
<border-style> 
+
ver {{ Cssxref("border-bottom-style") }}.
+
<border-color> 
+
ver {{ Cssxref("border-bottom-color") }}.
+
+ +

Ejemplos

+ +

Ver El Ejemplo Vivo

+ +
element {
+    border-bottom-width: 1px solid #000;
+}
+
+ +

Notas

+ +

Si no se especifica el color del borde, este tomará el valor definido en la propiedad del {{ Cssxref("color") }} general.

+ +

Se puede especificar los tres valores en cualquier orden y se pueden omitir una o dos.

+ +

Como con todas las propiedades generales, border-bottom siempre inicia todos los valores que le pueden ser definidos aún cuando no están especificados, en este caso toma los valores por defecto.

+ +

Lo que significa que:

+ +
  border-bottom-style: dotted;
+  border-bottom: thick green;
+ +

es idéntico a:

+ +
  border-bottom-style: dotted;
+  border-bottom: none thick green;
+ +

y el valor de {{ Cssxref("border-bottom-style") }} dado antes de border-bottom es ignorado.

+ +

Como el valor por defecto de {{ Cssxref("border-bottom-style") }} es none, el no especificar la parte <border-style> en la propiedad general significa: sin borde.

+ +

Especificaciones

+ + + +

Compatibilidades

+ + + + + + + + + + + + + + + + + + + + + + + + +
NavegadorVersión mínima
Internet Explorer4
Firefox1
Netscape4
Opera3.5
+ +

Ver también

+ +

{{ Cssxref("border") }}, {{ Cssxref("border-bottom") }}, {{ Cssxref("border-bottom-width") }}, {{ Cssxref("border-bottom-style") }}, {{ Cssxref("border-bottom-color") }},

+ +
+

Categorías

+ +

Interwiki Languages

+
+ +

{{ languages( { "de": "de/CSS/border-bottom", "en": "en/CSS/border-bottom", "fr": "fr/CSS/border-bottom", "ja": "ja/CSS/border-bottom", "pl": "pl/CSS/border-bottom" } ) }}

-- cgit v1.2.3-54-g00ecf