--- title: border-top-color slug: Web/CSS/border-top-color tags: - CSS - CSS Borders - CSS属性 translation_of: Web/CSS/border-top-color ---
{{CSSRef}}

border-top-color 属性用以设置某元素顶部 {{cssxref("border")}}的颜色。通常,用{{cssxref("border-color")}} 或 {{cssxref("border-top")}} 设置该颜色更为便捷可取。

{{EmbedInteractiveExample("pages/css/border-top-color.html")}}

语法

/* <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 属性的值为单值。

{{cssxref("<color>")}}
上边框的颜色。

规范语法

{{csssyntax}}

示例

一个简单的带边框容器

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>

CSS

.mybox {
  border: solid 0.3em gold;
  border-top-color: red;
  width: auto;
}

.redtext {
  color: red;
}

结果

{{EmbedLiveSample('A_simple_div_with_a_border')}}

Specifications

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")}}

See also