CSS border-inline-start-style

The border-inline-start-style property is used to set the style of the border on the inline start side of an element. The inline start side is the edge of the element that is on the left side in LTR (left-to-right) writing mode, and the right side in RTL (right-to-left) writing mode.

The syntax for the border-inline-start-style property is:


selector {
  border-inline-start-style: value;
}

Where selector is the element you want to apply the property to, and value is the style you want to set for the border on the inline start side. The possible values for this property are the same as the values for the border-style property.

Result:
This is an example of a border with a solid style on the inline start side.

In the example above, we have set the border-inline-start-style to solid, which creates a solid line on the left side of the element. You can also use other values such as dashed, dotted, double, etc.