CSSborder-inline-style Property
Example
Set a style for the borders in inline direction:
border-inline-style: solid;
}
#example2 {
border-inline-style: dashed dotted;
}
More "Try it Yourself" examples below.
Definition and Usage
Theborder-inline-style property sets the style of an element's borders in the inline direction.
Values for theborder-inline-style property can be set in different ways:
If the border-inline-style property has two values:
- border-inline-style: solid dotted;
- border style at inline start is solid
- border style at inline end is dotted
If the border-inline-style property has one value:
- border-inline-style: dotted;
- border style at inline start and end is dotted
The CSSborder-inline-style property is very similar to CSS propertiesborder-bottom-style,border-left-style,border-right-style andborder-top-style, but theborder-inline-style property is dependent on inline direction.
Note: The related CSS propertieswriting-mode,text-orientation anddirection define inline direction. This affects where the start and end of a line is and the result of theborder-inline-style property. For pages in English, inline direction is left to right and block direction is downward.
| Default value: | none |
|---|---|
| Inherited: | no |
| Animatable: | no.Read aboutanimatable |
| Version: | CSS3 |
| JavaScript syntax: | object.style.borderInlineStyle="dotted"Try it |
Browser Support
The numbers in the table specify the first browser version that fully supports the property.
| Property | |||||
|---|---|---|---|---|---|
| border-inline-style | 87.0 | 87.0 | 66.0 | 14.1 | 73.0 |
CSS Syntax
Property Values
| Value | Description | Demo |
|---|---|---|
| none | Default value. Specifies no border | Demo ❯ |
| hidden | The same as "none", except in border conflict resolution for table elements | Demo ❯ |
| dotted | Specifies a dotted border | Demo ❯ |
| dashed | Specifies a dashed border | Demo ❯ |
| solid | Specifies a solid border | Demo ❯ |
| double | Specifies a double border | Demo ❯ |
| groove | Specifies a 3D grooved border. The effect depends on the border-color value | Demo ❯ |
| rigde | Specifies a 3D ridged border. The effect depends on the border-color value | Demo ❯ |
| inset | Specifies a 3D inset border. The effect depends on the border-color value | Demo ❯ |
| outset | Specifies a 3D outset border. The effect depends on the border-color value | Demo ❯ |
| initial | Sets this property to its default value.Read aboutinitial | |
| inherit | Inherits this property from its parent element.Read aboutinherit |
More Examples
With writing-mode property
The position of the borders at the start and end in the inline direction is affected by thewriting-mode property:
writing-mode: vertical-rl;
border-inline-style: dotted;
}
With direction property
The position of the borders at the start and end in the inline direction is affected by thedirection property:
direction: rtl;
border-inline-style: solid dotted;
}
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-style property:CSS Border-bottom-style property
CSS border-left-style property:CSS Border-left-style property
CSS border-right-style property:CSS Border-right-style property
CSS border-top-style property:CSS Border-top-style property
CSS direction property:CSS Direction property
CSS text-orientation property:CSS Text-orientation property
CSS writing-mode property:CSS Writing-mode property

