--- title: border-left-color slug: Web/CSS/border-left-color translation_of: Web/CSS/border-left-color ---
{{CSSRef("CSS Borders")}}

 border-left-color 属性设置元素的左边框颜色。值得注意的是,在大数情况下使用 {{cssxref("border-color")}} 或 {{cssxref("border-left")}} 更加方便和普遍。

/* <color> values */
border-left-color: red;
border-left-color: #ffbb00;
border-left-color: rgb(255, 0, 0);
border-left-color: hsla(100%, 50%, 25%, 0.75);
border-left-color: currentColor;
border-left-color: transparent;

/* Global values */
border-left-color: inherit;
border-left-color: initial;
border-left-color: unset;

{{cssinfo}}

语法 

 border-left-color 属性取值为单个颜色值.

取值

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

正式语法

{{csssyntax}}

例子

一个带边框的简单 div

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-left-color: red;
    width: auto;
}
.redtext {
    color: red;
}

Result

{{EmbedLiveSample('A_simple_div_with_a_border')}}

Specifications

Specification Status Comment
{{SpecName('CSS3 Backgrounds', '#border-left-color', 'border-left-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#propdef-border-left-color', 'border-left-color')}} {{Spec2('CSS2.1')}} Initial definition

Browser compatibility

{{Compat("css.properties.border-left-color")}}

See also