Learn CSS daily

border-inline-start-color
.border-example { border-inline-start-color: blue; border-inline-start-width: 2px; border-inline-start-style: solid; }

The 'border-inline-start-color' CSS property sets the color of the inline start border (left border for left-to-right scripts, right border for right-to-left scripts) of an element. This property is useful for styling borders in a specific direction.

border-inline-start
.example { border-inline-start: 2px solid red; }

The 'border-inline-start' property is used to set the style, color, and width of the inline-start border of a block-level element. The inline-start side of an element depends on the direction of the text, so it is the left side in left-to-right languages like English.

border-inline-end-width
.example { border-inline-end-width: 2px; border-style: solid; }

The 'border-inline-end-width' property sets the width of the end border of an element. It is useful for styling the inline end edge of an element, which could be the right border in a left-to-right language or the left border in a right-to-left language.

border-inline-end-style
.border-example { border-inline-end-style: solid; border-inline-end-width: 2px; }

The 'border-inline-end-style' property sets the style of the inline-end border of an element, which is the right border in LTR scripts or the left border in RTL scripts.

border-inline-end-color
.example { border-inline-end-color: blue; }

The 'border-inline-end-color' property sets the color of the inline end border of an element, which is the right border in LTR (left-to-right) languages and the left border in RTL (right-to-left) languages.