How to add Border Left in CSS

  • Post category:CSS

Get the code of How to add Border Left in CSS and watch video tutorials. You can practice using our code editor. Our practical guide will make your learning journey much easier. You can explore the tutorial and learn.

<h1>Hello World</h1>
h1 {
  background: yellow;
  padding: 10px;
  border-left: 10px solid red;
}