border-block-end-color

This is an experimental technology
Check the Browser compatibility table carefully before using this in production.

The border-block-end-color CSS property defines the color of the logical block-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-block-end-color: yellow;
border-block-end-color: #F5F6F7;

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

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

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

Results

Specifications

Specification Status Comment
CSS Logical Properties and Values Level 1
The definition of 'border-block-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-block-end-colorChrome Full support 69Edge Full support 79Firefox Full support 41
Full support 41
No support 38 — 51
Disabled
Disabled From version 38 until version 51 (exclusive): 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.
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
No support 38 — 51
Disabled
Disabled From version 38 until version 51 (exclusive): 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.
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
User must explicitly enable this feature.
User must explicitly enable this feature.

See also