CSS border-inline-end-width Property
Example
Set a width for the border at the end in the inline direction:
div {
    border-inline-end-style: solid;
    border-inline-end-width: 10px;
}
Try it Yourself »
More "Try it Yourself" examples below.
Definition and Usage
The border-inline-end-width property sets the width of an element's border at the end in the inline direction.
Note: For the border-inline-end-width property to take effect, the border-inline-end-style property must be set.
The CSS 
border-inline-end-width property is very similar to CSS properties 
border-bottom-width, 
border-left-width, 
border-right-width and 
border-top-width, but the 
border-inline-end-width 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-end-width property. For pages in English, inline direction is left to right and block direction is downward.
| Default value: | medium | 
|---|---|
| Inherited: | no | 
| Animatable: | yes. Read about animatable Try it | 
| Version: | CSS3 | 
| JavaScript syntax: | object.style.borderInlineEndWidth="10px" Try it | 
Browser Support
The numbers in the table specify the first browser version that fully supports the property.
| Property | |||||
|---|---|---|---|---|---|
| border-inline-end-width | 69.0 | 79.0 | 41.0 | 12.1 | 56.0 | 
CSS Syntax
border-inline-end-width: medium|thin|thick|length|initial|inherit;
Property Values
| Value | Description | Demo | 
|---|---|---|
| medium | Specifies a medium border. This is default | Demo ❯ | 
| thin | Specifies a thin border | Demo ❯ | 
| thick | Specifies a thick border | Demo ❯ | 
| length | Allows you to define the thickness of the border. Read about length units | 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 border at the end in the inline direction is affected by the writing-mode property:
  div {
      border-inline-end-style: solid;
      writing-mode: vertical-rl;
      border-inline-end-width: 5px;
  }
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-end-width: 10px;
  }
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-end-style property: CSS Border-inline-end-style property
CSS border-inline-start-width property: CSS Border-inline-start-width property
CSS border-bottom-width property: CSS Border-bottom-width property
CSS border-left-width property: CSS Border-left-width property
CSS border-right-width property: CSS Border-right-width property
CSS border-top-width property: CSS Border-top-width property
CSS direction property: CSS Direction property
CSS text-orientation property: CSS Text-orientation property
CSS writing-mode property: CSS Writing-mode property