border-inline-end-color

The border-inline-end-color CSS property defines the color of the logical inline-end border 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 border-top-color, border-right-color, border-bottom-color, or border-left-color property depending on the values defined for writing-mode, direction, and text-orientation.

Syntax

border-inline-end-color: rebeccapurple;
border-inline-end-color: #663399;

Related properties are border-block-start-color, border-block-end-color, and border-inline-start-color, which define the other border colors of the element.

Initial valuecurrentcolor
Applies toall elements
Inheritedno
Computed valuecomputed color
Animation typea color

Values

<'color'>
The color of the border. See color.

Formal definition

Initial valuecurrentcolor
Applies toall elements
Inheritedno
Computed valuecomputed color
Animation typea color

Formal syntax

<'border-top-color'>

Examples

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-end-color: red;
}

Specifications

Specification Status Comment
CSS Logical Properties and Values Level 1
The definition of 'border-inline-end-color' in that specification.
Editor's Draft Initial definition

Browser compatibility

DesktopMobile
ChromeEdgeFirefoxInternet ExplorerOperaSafariAndroid webviewChrome for AndroidFirefox for AndroidOpera for AndroidSafari on iOSSamsung Internet
border-inline-end-colorChrome Full support 69Edge Full support 79Firefox Full support 41
Full support 41
Full support 38
Notes Disabled
Notes Enabled by default since Firefox 41.
Disabled From version 38: this feature is behind the layout.css.vertical-text.enabled preference (needs to be set to true). To change preferences in Firefox, visit about:config.
Full support 3
Alternate Name
Alternate Name Uses the non-standard name: -moz-border-end-color
IE No support NoOpera Full support 56Safari Full support 12.1WebView Android Full support 69Chrome Android Full support 69Firefox Android Full support 41
Full support 41
Full support 38
Notes Disabled
Notes Enabled by default since Firefox 41.
Disabled From version 38: this feature is behind the layout.css.vertical-text.enabled preference (needs to be set to true). To change preferences in Firefox, visit about:config.
Full support 4
Alternate Name
Alternate Name Uses the non-standard name: -moz-border-end-color
Opera Android Full support 48Safari iOS Full support 12.2Samsung Internet Android Full support 10.0

Legend

Full support
Full support
No support
No support
See implementation notes.
See implementation notes.
User must explicitly enable this feature.
User must explicitly enable this feature.
Uses a non-standard name.
Uses a non-standard name.

See also