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-width/index.html | 101 +++++++++++++++++++++++++++++++ 1 file changed, 101 insertions(+) create mode 100644 files/es/web/css/border-width/index.html (limited to 'files/es/web/css/border-width') diff --git a/files/es/web/css/border-width/index.html b/files/es/web/css/border-width/index.html new file mode 100644 index 0000000000..ba017b3823 --- /dev/null +++ b/files/es/web/css/border-width/index.html @@ -0,0 +1,101 @@ +--- +title: border-width +slug: Web/CSS/border-width +tags: + - CSS + - 'CSS:Referencias' + - Todas_las_Categorías +translation_of: Web/CSS/border-width +--- +

Resumen

+ +

La propiedad border-width define el ancho del borde.

+ + + +

Sintaxis

+ +
 border-width: <border-width-value> {1,4} | {{ Cssxref("inherit", "heredado") }}
+
+ +

Valores

+ +
+
<border-width-value>
+
thin | medium | thick | {{ Cssxref("length", "largo") }}
+
thin
+
Un borde fino.
+
medium
+
Un borde mediano.
+
thick
+
Un borde grueso.
+
<length>
+
El grosor de un borde es un valor explícito por lo cual el ancho no puede ser nunca negativo.
+ Nota: Un valor em también es reconocido y soportado.
+
+ +

Propiedades relacionadas

+ + + +

Ejemplos

+ +

Ver el ejemplo en vivo

+ +
element {
+    border-width: thin;
+    border-style: solid;
+    border-color: #000;
+}
+
+ +

Especificaciones

+ + + +

Compatibilidad

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

Ver también

+ +

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

-- cgit v1.2.3-54-g00ecf