border-inline-end-style

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

Syntax

/* <'border-style'> values */
border-inline-end-style: dashed;
border-inline-end-style: dotted;
border-inline-end-style: groove;

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

Values

<'border-style'>
The line style of the border. See border-style.

Formal definition

Initial valuenone
Applies toall elements
Inheritedno
Computed valueas specified
Animation typediscrete

Formal syntax

<'border-top-style'>

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: 5px solid blue;
  border-inline-end-style: dashed;
}

Results

Specifications

Specification Status Comment
CSS Logical Properties and Values Level 1
The definition of 'border-inline-end-style' 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-styleChrome 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-style
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-style
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