CSS bordertop Property (original) (raw)

CSS border-top Property

Last Updated : 26 Aug, 2024

The border-top property in CSS is used to set all top border properties in one line. This property is used to set the width, style, and color of the top border.

**Syntax:

border-top: border-width border-style border-color|initial|inherit;

**Property Values:

**Example: In this example, we are using the above-explained property.

HTML `

border-top property
<!-- border-top CSS property -->
<style>
    h1 {
        border-top: 5px solid green;
    }

    h2 {
        border-top: 4px dotted black;
    }
</style>
<h1>GeeksforGeeks</h1>
<h2>border-top property</h2>

`

**Output:

**Supported Browsers: The browser supported by border-top property are listed below: