htmlcss

The border-bottom-style property is used in CSS and certain HTML elements. It is used for setting the line style for the bottom side of the element's border. To set the line type for all four sides, use border-style. To set the line type individually for the other sides, use border-right-style, border-top-style, or border-left-style.

Values


HTML example:

<span style="border-bottom:medium solid white;">TEXT</span>


CSS example:

h1 {
    border-bottom:medium solid white;
}