🔥Limited Offer: Get 50% OFFon AI & Full Stack Courses🔥
Back to CSS Notes
Topic #23

Border Color


CSS Border Color

The border-color property is used to set the color of the four borders.

The color can be set by:

  • name - specify a color name, like "red"
  • HEX - specify a HEX value, like "#ff0000"
  • RGB - specify a RGB value, like "rgb(255,0,0)"
  • HSL - specify a HSL value, like "hsl(0, 100%, 50%)"
  • transparent

Note: If border-color is not set, it inherits the color of the element.

Example

p.one
{

border-style: solid;

border-color: red;

}

p.two
{

border-style: solid;

  border-color: green;

}

p.three {
  border-style: dotted;
  border-color:
  blue;
}

Specific Side Colors

The border-color property can have from one to four values (for the top border, right border, bottom border, and the left border).

Example

  p.one {
  border-style: solid;
  border-color: red green blue yellow;
  /* red top, green right, blue bottom and yellow left */
}

HEX Values

The color of the border can also be specified using a hexadecimal value (HEX):

Example

  p.one {
  border-style: solid;
  border-color: #ff0000; /* red
  */
}

RGB Values

Or by using RGB values:

Example

  p.one {
  border-style: solid;
  border-color: rgb(255, 0, 0);
  /* red */
}

HSL Values

You can also use HSL values:

Example

  p.one {
  border-style: solid;
  border-color: hsl(0, 100%, 50%);
  /* red */
}

Note: You can learn more about HEX, RGB and HSL values in our CSS Colors chapters.

Want to go beyond the notes?

Join CodingNow 2.0's CSS course — live mentorship, real projects, and 100% placement support.

Enroll Now — Free Demo Available

Border Color – FAQs

Quick answers about learning Border Color in CSS.

This free note from CodingNow 2.0 explains Border Color in CSS — concept, syntax and worked code examples you can copy, run and revise before interviews.
Yes. Every CSS topic on CodingNow 2.0, including Border Color, is 100% free with no signup required.
With focused practice, most students grasp Border Color in 1–3 days from these notes; pairing it with CodingNow 2.0's mentor-led course takes you to job-ready depth faster.
Use the code examples in this note, then ask doubts for free on the CodingNow 2.0 Community (/community) — expert instructors answer within 24 hours.
WhatsApp
Call NowEnroll Now