blob: 5550344a7580373db4bd5449fcb5c9414a2a57be (
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
102
103
104
105
106
107
108
109
110
111
112
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>
|