--- title: border-right-color slug: Web/CSS/border-right-color translation_of: Web/CSS/border-right-color ---
border-right-color
CSS属性用来设置元素右边的 {{cssxref("border")}}. 这个属性的值也可以通过简写的CSS属性 {{cssxref("border-color")}} 或{{cssxref("border-right")}}来设置.
/* <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;
The border-right-color
property is specified as a single value.
<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>
.mybox { border: solid 0.3em gold; border-right-color: red; width: auto; } .redtext { color: red; }
{{EmbedLiveSample('A_simple_div_with_a_border')}}
Specification | Status | Comment |
---|---|---|
{{SpecName('CSS3 Backgrounds', '#the-border-color', 'border-color')}} | {{Spec2('CSS3 Backgrounds')}} | No significant changes, though the transparent keyword, now included in {{cssxref("<color>")}} which has been extended, has been formally removed. |
{{SpecName('CSS2.1', 'box.html#border-color-properties', 'border-right-color')}} | {{Spec2('CSS2.1')}} | Initial definition |
{{cssinfo}}
{{Compat("css.properties.border-right-color")}}