--- title: border-inline-color slug: Web/CSS/border-inline-color translation_of: Web/CSS/border-inline-color ---
{{CSSRef}}

The border-inline-color CSS property defines the color of the logical inline borders of an element, which maps to a physical border color depending on the element's writing mode, directionality, and text orientation. It corresponds to the {{cssxref("border-top-color")}} and {{cssxref("border-bottom-color")}}, or {{cssxref("border-right-color")}} and {{cssxref("border-left-color")}} property depending on the values defined for {{cssxref("writing-mode")}}, {{cssxref("direction")}}, and {{cssxref("text-orientation")}}.

border-inline-color: yellow;
border-inline-color: #F5F6F7;

The border color in the other dimension can be set with {{cssxref("border-block-color")}} which sets {{cssxref("border-block-start-color")}}, and {{cssxref("border-block-end-color")}}.

Syntax

Values

<'color'>
The color of the border. See {{cssxref("color")}}.

Formal definition

{{CSSInfo}}

Formal syntax

{{csssyntax}}

Examples

Border color with vertical text

HTML

<div>
  <p class="exampleText">Example text</p>
</div>

CSS

div {
  background-color: yellow;
  width: 120px;
  height: 120px;
}

.exampleText {
  writing-mode: vertical-lr;
  border: 10px solid blue;
  border-inline-color: red;
}

Results

{{EmbedLiveSample("Border_color_with_vertical_text", 140, 140)}}

Specifications

Specification Status Comment
{{SpecName("CSS Logical Properties", "#propdef-border-inline-color", "border-inline-color")}} {{Spec2("CSS Logical Properties")}} Initial definition

Browser compatibility

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

See also