55 of 313 menu

The border-bottom-style property

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

Syntax

selector { border-bottom-style: value; }

Example

Let's set a bottom border type as dashed:

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

:

See also

byenru