The border-color property sets the color of an element's four borders. This property can have from one to four values.Examples:Note: Always declare the border-style property before the border-color property. An element must have borders before you can change the color.
border-color: color|transparent|initial|inherit;
p { border-style: solid; border-color: #ff0000 #0000ff; }