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
114
115
116
117
|
---
title: border-bottom
slug: Web/CSS/border-bottom
tags:
- CSS
- 'CSS:Referencias'
- Todas_las_Categorías
translation_of: Web/CSS/border-bottom
---
<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>La propiedad <code>border-bottom</code> 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.</p>
<ul>
<li>{{ Cssxref("initial", "Valor inicial") }}: ver propiedades individuales</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") }}: ver propiedades individuales</li>
</ul>
<h3 id="Sintaxis" name="Sintaxis">Sintaxis</h3>
<pre class="eval">border-bottom: [ <border-width> || <border-style> || <border-color> ] | <em>inherit</em>
</pre>
<h3 id="Valores" name="Valores">Valores</h3>
<dl>
<dt><border-width> </dt>
<dd>ver {{ Cssxref("border-bottom-width") }}.</dd>
<dt><border-style> </dt>
<dd>ver {{ Cssxref("border-bottom-style") }}.</dd>
<dt><border-color> </dt>
<dd>ver {{ Cssxref("border-bottom-color") }}.</dd>
</dl>
<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: 1px solid #000;
}
</pre>
<h3 id="Notas" name="Notas">Notas</h3>
<p>Si no se especifica el color del borde, este tomará el valor definido en la propiedad del {{ Cssxref("color") }} general.</p>
<p>Se puede especificar los tres valores en cualquier orden y se pueden omitir una o dos.</p>
<p>Como con todas las propiedades generales, <code>border-bottom</code> 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.</p>
<p>Lo que significa que:</p>
<pre> border-bottom-style: dotted;
border-bottom: thick green;</pre>
<p>es idéntico a:</p>
<pre> border-bottom-style: dotted;
border-bottom: none thick green;</pre>
<p>y el valor de {{ Cssxref("border-bottom-style") }} dado antes de <code>border-bottom</code> es ignorado.</p>
<p>Como el valor por defecto de {{ Cssxref("border-bottom-style") }} es <code>none</code>, el no especificar la parte <border-style> en la propiedad general significa: <strong>sin borde</strong>.</p>
<h3 id="Especificaciones" name="Especificaciones">Especificaciones</h3>
<ul>
<li><a class="external" href="http://www.w3.org/TR/CSS1#border-bottom">CSS 1</a></li>
<li><a class="external" href="http://www.w3.org/TR/CSS21/box.html#border-shorthand-properties">CSS 2.1</a></li>
<li><a class="external" href="http://www.w3.org/TR/css3-background/#the-border-shorthands">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>4</td>
</tr>
<tr>
<td>Firefox</td>
<td>1</td>
</tr>
<tr>
<td>Netscape</td>
<td>4</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-bottom") }}, {{ Cssxref("border-bottom-width") }}, {{ Cssxref("border-bottom-style") }}, {{ Cssxref("border-bottom-color") }},</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", "en": "en/CSS/border-bottom", "fr": "fr/CSS/border-bottom", "ja": "ja/CSS/border-bottom", "pl": "pl/CSS/border-bottom" } ) }}</p>
|