The border-left Property

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

The internal stylesheet embedded in the head of this page

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