52 of 313 menu

The border-left-style property

The border-left-style property specifies a style of a left border. Property values ​​such as in border-style.

Syntax

selector { border-left-style: value; }

Example

Let's set a left border type as dashed:

<div id="elem"></div> #elem { border-left-style: dashed; border-left-width: 1px; border-left-color: black; background: #f9f9f9; width: 300px; height: 100px; }

:

See also

byenru