--- title: border-top-color slug: Web/CSS/border-top-color tags: - CSS - CSS Borders - CSS属性 translation_of: Web/CSS/border-top-color ---
border-top-color
属性用以设置某元素顶部 {{cssxref("border")}}的颜色。通常,用{{cssxref("border-color")}} 或 {{cssxref("border-top")}} 设置该颜色更为便捷可取。
/* <color> values */ border-top-color: red; border-top-color: #ffbb00; border-top-color: rgb(255, 0, 0); border-top-color: hsla(100%, 50%, 25%, 0.75); border-top-color: currentColor; border-top-color: transparent; /* Global values */ border-top-color: inherit; border-top-color: initial; border-top-color: unset;
border-top-color
属性的值为单值。
<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-top-color: red; width: auto; } .redtext { color: red; }
{{EmbedLiveSample('A_simple_div_with_a_border')}}
Specification | Status | Comment |
---|---|---|
{{SpecName('CSS3 Backgrounds', '#border-top-color', 'border-top-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-top-color')}} | {{Spec2('CSS2.1')}} | Initial definition |
{{cssinfo}}
{{Compat("css.properties.border-top-color")}}