blob: ba017b382344f0ce529834c0e735fd12cb853ab3 (
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
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
|
---
title: border-width
slug: Web/CSS/border-width
tags:
- CSS
- 'CSS:Referencias'
- Todas_las_Categorías
translation_of: Web/CSS/border-width
---
<h3 id="Resumen" name="Resumen">Resumen</h3>
<p>La propiedad <strong><code>border-width</code></strong> define el ancho del borde.</p>
<ul>
<li>{{ Cssxref("initial", "Valor inicial") }}: {{ Cssxref("medium", "medio") }}</li>
<li>Se aplica a: todos los elementos</li>
<li>{{ Cssxref("inheritance", "Herencia") }}: no</li>
<li>Porcentajes: N/A</li>
<li>Medio: {{ Cssxref("Media:Visual", "visual") }}</li>
<li>{{ Cssxref("computed value", "Valor calculado") }}: largo absoluto o '0' si el estilo del borde es <em>ninguno</em> ('none') o 'hidden'.</li>
</ul>
<h3 id="Sintaxis" name="Sintaxis">Sintaxis</h3>
<pre class="eval notranslate"> border-width: <border-width-value> {1,4} | {{ Cssxref("inherit", "heredado") }}
</pre>
<h3 id="Valores" name="Valores">Valores</h3>
<dl>
<dt><strong><border-width-value></strong></dt>
<dd><code>thin | medium | thick | </code> {{ Cssxref("length", "largo") }}</dd>
<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 grosor de un borde es un valor explícito por lo cual el ancho <strong>no</strong> puede ser nunca negativo.<br>
Nota: Un valor <code>em</code> también es reconocido y soportado.</dd>
</dl>
<h3 id="Propiedades_relacionadas" name="Propiedades_relacionadas">Propiedades relacionadas</h3>
<ul>
<li>{{ Cssxref("border-bottom-width") }}</li>
<li>{{ Cssxref("border-left-width") }}</li>
<li>{{ Cssxref("border-right-width") }}</li>
<li>{{ Cssxref("border-top-width") }}</li>
</ul>
<h3 id="Ejemplos" name="Ejemplos">Ejemplos</h3>
<p><a href="/samples/cssref/border.html">V</a>er el ejemplo en vivo</p>
<pre class="notranslate">element {
border-width: thin;
border-style: solid;
border-color: #000;
}
</pre>
<h3 id="Especificaciones" name="Especificaciones">Especificaciones</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="Compatibilidad" name="Compatibilidad">Compatibilidad</h3>
<table class="standard-table">
<tbody>
<tr>
<th>Navegador</th>
<th>Versión mínima</th>
</tr>
<tr>
<td>Internet Explorer</td>
<td>4.0</td>
</tr>
<tr>
<td>Firefox</td>
<td>1.0</td>
</tr>
<tr>
<td>Netscape</td>
<td></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>{{ Cssxref("border") }}, {{ Cssxref("border-color") }}, {{ Cssxref("border-style") }}, {{ Cssxref("border-width") }}</p>
|