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
|
---
title: border-right
slug: Web/CSS/border-right
tags:
- CSS
- CSS 属性
- CSS 边框
translation_of: Web/CSS/border-right
---
<div>{{CSSRef}}</div>
<p>CSS属性 <strong>border-<code>right</code></strong> 是属性{{ Cssxref("border-right-color") }}, {{ Cssxref("border-right-style") }}, 和{{ Cssxref("border-right-width") }}的三者的缩写。这些属性都是在描述一个元素的右边的边框<a href="https://developer.mozilla.org/zh-CN/docs/Web/CSS/border" title="CSS的border属性是一个用于设置各种单独的边界属性的简写属性。border可以用于设置一个或多个以下属性的值: border-width, border-style, border-color。"><code>border</code></a>。</p>
<pre class="brush:css no-line-numbers">border-right: 1px;
border-right: 2px dotted;
border-right: medium dashed green;
</pre>
<div class="note">
<p>和CSS所有的缩写属性一样,border-<code>right</code> 总是会设置该缩写属性所包含的全部属性值,即使开发者并没有一一指定这些值。CSS缩写属性会给没有被定义的属性一个默认的属性值。那就意味着下面这个例子......</p>
<pre class="brush:css">border-right-style: dotted;
border-right: thick green;
</pre>
<p>......实际上应该是下面这个样子......</p>
<pre class="brush:css"> border-right-style: dotted;
border-right: none thick green;
</pre>
<p> ......并且在 border-<code>right</code> 之前定义的 {{ Cssxref("border-right-style") }} 的值也会被覆盖。由于{{ Cssxref("border-right-style") }} 的默认值是 none, border-style的最终结果就是没有边框。</p>
</div>
<p>{{cssinfo}}</p>
<h2 id="Syntax" name="Syntax">Syntax</h2>
<p>这三种属性值的缩写需要按照顺序定义数值,也可以省略其中的一个或者两个。</p>
<h3 id="Values">Values</h3>
<dl>
<dt><code><br-width> </code></dt>
<dd>请参阅 {{ Cssxref("border-right-width") }}.</dd>
<dt><code><br-style> </code></dt>
<dd>请参阅 {{ Cssxref("border-right-style") }}.</dd>
<dt><code>{{cssxref("<color>")}}</code></dt>
<dd>请参阅 {{ Cssxref("border-right-color") }}.</dd>
</dl>
<h3 id="Formal_syntax">Formal syntax</h3>
{{csssyntax}}
<h2 id="Example">Example</h2>
<pre class="brush: html"><div>
This box has a border on the right side.
</div></pre>
<pre class="brush: css">div {
border-right: 4px dashed blue;
background-color: gold;
height: 100px;
width: 100px;
font-weight: bold;
text-align: center;
}
</pre>
<p>{{ EmbedLiveSample('Example') }}</p>
<h2 id="Specifications" name="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', '#border-right', 'border-right') }}</td>
<td>{{ Spec2('CSS3 Backgrounds') }}</td>
<td>No direct changes, though the modification of values for the {{ cssxref("border-right-color") }} do apply to it.</td>
</tr>
<tr>
<td>{{ SpecName('CSS2.1', 'box.html#propdef-border-right', 'border-right') }}</td>
<td>{{ Spec2('CSS2.1') }}</td>
<td>No significant changes.</td>
</tr>
<tr>
<td>{{ SpecName('CSS1', '#border-right', 'border-right') }}</td>
<td>{{ Spec2('CSS1') }}</td>
<td>Initial definition.</td>
</tr>
</tbody>
</table>
<h2 id="Browser_compatibility" name="Browser_compatibility">Browser compatibility</h2>
{{Compat("css.properties.border-right")}}
|