CSS border-inline-color Property


Example

Set a color for the borders in inline direction:

#example1 {
  border-inline-style: solid;
  border-inline-color: pink;
}

#example2 {
  border-inline-style: solid;
  border-inline-color: pink lightblue;
}
Try it Yourself »

More "Try it Yourself" examples below.


Definition and Usage

The border-inline-color property sets the color of an element's borders in the inline direction.

Note: For the border-inline-color property to take effect, the border-inline-style must be set.

Values for the border-inline-color property can be set in different ways:

If the border-inline-color property has two values:

  • border-inline-color: pink blue;
    • border color at inline start is pink
    • border color at inline end is blue

If the border-inline-color property has one value:

  • border-inline-color: blue;
    • border color at inline start and end is blue

The CSS border-inline-color property is very similar to CSS properties border-bottom-color, border-left-color, border-right-color and border-top-color, but the border-inline-color property is dependent on inline direction.

Note: The related CSS properties writing-mode, text-orientation and direction define inline direction. This affects where the start and end of a line is and the result of the border-inline-color property. For pages in English, inline direction is left to right and block direction is downward.

Show demo ❯

Default value: The current color of the element
Inherited: no
Animatable: yes. Read about animatable Try it
Version: CSS3
JavaScript syntax: object.style.borderInlineColor="pink" Try it

Browser Support

The numbers in the table specify the first browser version that fully supports the property.

Property
border-inline-color 87.0 87.0 66.0 14.1 73.0


CSS Syntax

border-inline-color: color|transparent|initial|inherit;

Property Values

Value Description Demo
color Specifies the border color. Look at CSS Color Values for a complete list of possible color values. Default color is the current color of the element Demo ❯
transparent Specifies that the border color should be transparent Demo ❯
initial Sets this property to its default value. Read about initial
inherit Inherits this property from its parent element. Read about inherit

More Examples

With writing-mode property

The position of the borders at the start and end in the inline direction is affected by the writing-mode property:

div {
  border-inline-style: solid;
  writing-mode: vertical-rl;
  border-inline-color: blue;
}
Try it Yourself »

With direction property

The position of the borders at the start and end in the inline direction is affected by the direction property:

div {
  direction: rtl;
  border-inline-color: blue hotpink;
}
Try it Yourself »

Related Pages

CSS tutorial: CSS Border

CSS border property: CSS Border property

CSS border-inline property: CSS Border-inline property

CSS border-inline-style property: CSS Border-inline-style property

CSS border-bottom-color property: CSS Border-bottom-color property

CSS border-left-color property: CSS Border-left-color property

CSS border-right-color property: CSS Border-right-color property

CSS border-top-color property: CSS Border-top-color property

CSS direction property: CSS Direction property

CSS text-orientation property: CSS Text-orientation property

CSS writing-mode property: CSS Writing-mode property


Copyright 1999-2023 by Refsnes Data. All Rights Reserved.