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
|
---
title: border-right-color
slug: Web/CSS/border-right-color
translation_of: Web/CSS/border-right-color
---
<div>{{CSSRef}}</div>
<p><strong><code>border-right-color</code></strong> CSS属性用来设置元素右边的 {{cssxref("border")}}. 这个属性的值也可以通过简写的CSS属性 {{cssxref("border-color")}} 或{{cssxref("border-right")}}来设置.</p>
<div>{{EmbedInteractiveExample("pages/css/border-right-color.html")}}</div>
<h2 id="Syntax">Syntax</h2>
<pre class="brush: css no-line-numbers language-css">/* <color> values */
border-right-color: red;
border-right-color: #ffbb00;
border-right-color: rgb(255, 0, 0);
border-right-color: hsla(100%, 50%, 25%, 0.75);
border-right-color: currentColor;
border-right-color: transparent;
/* Global values */
border-right-color: inherit;
border-right-color: initial;
border-right-color: unset;
</pre>
<p>The <code>border-right-color</code> property is specified as a single value.</p>
<h3 id="Values">Values</h3>
<dl>
<dt>{{cssxref("<color>")}}</dt>
<dd>The color of the right border.</dd>
</dl>
<h3 id="Formal_syntax">Formal syntax</h3>
{{csssyntax}}
<h2 id="Examples">Examples</h2>
<h3 id="A_simple_div_with_a_border">A simple div with a border</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-right-color: red;
width: auto;
}
.redtext {
color: red;
}</pre>
<h4 id="Result">Result</h4>
<p>{{EmbedLiveSample('A_simple_div_with_a_border')}}</p>
<h2 id="Specifications">Specifications</h2>
<table class="standard-table">
<thead>
<tr>
<th scope="col">Specification</th>
<th scope="col">Status</th>
<th scope="col">Comment</th>
</tr>
</thead>
<tbody>
<tr>
<td>{{SpecName('CSS3 Backgrounds', '#the-border-color', 'border-color')}}</td>
<td>{{Spec2('CSS3 Backgrounds')}}</td>
<td>No significant changes, though the <code>transparent</code> keyword, now included in {{cssxref("<color>")}} which has been extended, has been formally removed.</td>
</tr>
<tr>
<td>{{SpecName('CSS2.1', 'box.html#border-color-properties', 'border-right-color')}}</td>
<td>{{Spec2('CSS2.1')}}</td>
<td>Initial definition</td>
</tr>
</tbody>
</table>
<p>{{cssinfo}}</p>
<h2 id="Browser_compatibility">Browser compatibility</h2>
<p>{{Compat("css.properties.border-right-color")}}</p>
<h2 id="See_also">See also</h2>
<ul>
<li>The border-related CSS shorthand properties: {{cssxref("border")}}, {{cssxref("border-right")}}, and {{cssxref("border-color")}}.</li>
<li>The color-related CSS properties for the other borders: {{cssxref("border-left-color")}}, {{cssxref("border-bottom-color")}}, and {{cssxref("border-top-color")}}.</li>
<li>The other border-related CSS properties applying to the same border: {{cssxref("border-right-style")}} and {{cssxref("border-right-width")}}.</li>
</ul>
|