The border-bottom Property

This property is a shorthand property for border-bottom-width, border-bottom-style, and border-bottom-color.

The internal stylesheet embedded in the head of this page

<style>
p {
  border-bottom: 6px solid red;
  background-color: lightgrey;
}
</style>