CSS Property: border-bottom-color

The border-bottom-color is a CSS property that sets the color of an element's bottom border.

Syntax

border-bottom-color: <color>;

Values

values ...

Examples

p {
    border-bottom-style: solid;
    border-bottom-width: 1px;

    /* color code */
    border-bottom-color: #ff0000;
}

More Information