CSS border-inline-style Property


Example

Set a style for the borders in inline direction:

#example1 {
  border-inline-style: solid;
}

#example2 {
  border-inline-style: dashed dotted;
}
Try it Yourself »

More "Try it Yourself" examples below.


Definition and Usage

The border-inline-style property sets the style of an element's borders in the inline direction.

Values for the border-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 CSS border-inline-style property is very similar to CSS properties border-bottom-style, border-left-style, border-right-style and border-top-style, but the border-inline-style 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-style property. For pages in English, inline direction is left to right and block direction is downward.

Show demo ❯

Default value: none
Inherited: no
Animatable: no. Read about animatable
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

border-inline-style: none|hidden|dotted|dashed|solid|double|groove|ridge|inset|outset|initial|inherit;

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 about initial
inherit Inherits this property from its parent element. Read about inherit

More Examples

With writing-mode property

The position of the borders at the start and end in the inline direction is affected by the writing-mode property:

div {
  writing-mode: vertical-rl;
  border-inline-style: dotted;
}
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-style: solid dotted;
}
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-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


Copyright 1999-2023 by Refsnes Data. All Rights Reserved.