The border-color property defines the colors of the borders of the element.
border-color: [ <color>{1,4} ] | inherit
The order is top, right, bottom, left.
The value of the color property.
All elements.
This property is not inherited.
standard border-color
<p style="border-color : #c00;">
This paragraph has a red border.
</p>
top/bottom and right/left have different colors
<p style="border-color : #c00 #ccc;">
This paragraph has red horizontal borders and grey vertical.
</p>
- If you don't set the border-style, the border will not display.

