blob: ca23148fb5454d678cda94f6b93e4b7d5bf5a104 (
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
|
---
title: border-bottom-color
slug: Web/CSS/border-bottom-color
translation_of: Web/CSS/border-bottom-color
---
<div>{{CSSRef}}</div>
<h2 id="概述">概述</h2>
<p><strong><code>border-bottom-color</code></strong> 属性设置一个元素底部边框的颜色。应当指出,在多数情况下,CSS 简写属性 {{cssxref("border-color")}} 或 {{cssxref("border-bottom")}} 更方便实用。</p>
<p>{{cssinfo}}</p>
<h2 id="语法">语法</h2>
<pre class="brush:css">border-bottom-color: yellow;
border-bottom-color: #F5F6F7;
</pre>
<h3 id="值">值</h3>
<dl>
<dt><code><color></code></dt>
<dd>一个描绘底边的颜色的 CSS {{cssxref("<color>")}} 值。</dd>
<dt><code>inherit</code></dt>
<dd>一个代表父元素底边颜色的关键字(可能和 <code>border-bottom-color</code> 默认值不同)</dd>
</dl>
<h3 id="正式语法">正式语法</h3>
{{csssyntax}}
<h2 id="示例">示例</h2>
<h3 id="一个带有边框的简单_div">一个带有边框的简单 div</h3>
<h4 id="HTML_内容">HTML 内容</h4>
<pre class="brush: html"><div class="mybox">
<p>This is a box with a border around it.
Note which side of the box is
<span class="redtext">red</span>.</p>
</div></pre>
<h4 id="CSS_内容">CSS 内容</h4>
<pre class="brush: css">.mybox {
border: solid 0.3em gold;
border-bottom-color: red;
width: auto;
}
.redtext {
color: red;
}</pre>
<h4 id="结果">结果</h4>
<p>{{EmbedLiveSample('A_simple_div_with_a_border')}}</p>
<h2 id="规范">规范</h2>
<table class="standard-table">
<thead>
<tr>
<th scope="col">规范</th>
<th scope="col">状态</th>
<th scope="col">注释</th>
</tr>
</thead>
<tbody>
<tr>
<td>{{SpecName('CSS3 Backgrounds', '#border-bottom-color', 'border-bottom-color')}}</td>
<td>{{Spec2('CSS3 Backgrounds')}}</td>
<td>无重大变化,不过 <code>transparent</code> 关键字被正式移除,该关键字现在被包含在已扩展的 {{cssxref("<color>")}} 里。</td>
</tr>
<tr>
<td>{{SpecName('CSS2.1', 'box.html#border-color-properties', 'border-bottom-color')}}</td>
<td>{{Spec2('CSS2.1')}}</td>
<td>初始定义</td>
</tr>
</tbody>
</table>
<h2 id="浏览器兼容性">浏览器兼容性</h2>
{{Compat("css.properties.border-bottom-color")}}
<h2 id="另见">另见</h2>
<ul>
<li>边框相关的 CSS 简写属性 {{Cssxref("border")}}, {{Cssxref("border-bottom")}} 和 {{Cssxref("border-color")}} 。</li>
<li>用于其它边框颜色相关的 CSS 属性: {{Cssxref("border-right-color")}}, {{Cssxref("border-top-color")}}, 和 {{Cssxref("border-left-color")}} 。</li>
<li>同样用于底边的其它边框相关的 CSS 属性: {{cssxref("border-bottom-style")}} 和 {{cssxref("border-bottom-width")}} 。</li>
</ul>
|