CSS Border Sides Color

  • Post category:CSS

Get the code of CSS Border Sides Color 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</h1>
h1 {
  border-left: 20px solid red;
  border-right: 20px solid green;
  border-bottom: 20px solid yellow;
  border-top: 20px solid blue;
}