--- title: border-left-color slug: Web/CSS/border-left-color translation_of: Web/CSS/border-left-color ---
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
属性取值为单个颜色值.
<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-left-color: red; width: auto; } .redtext { color: red; }
{{EmbedLiveSample('A_simple_div_with_a_border')}}
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 |
{{Compat("css.properties.border-left-color")}}