The border-bottom-color property sets the color of an element's bottom border.Note: Always declare the border-style property before the border-bottom-color property. An element must have borders before you can change the color.
border-bottom-color: color|transparent|initial|inherit;
p { border-style: solid; border-bottom-color: #ff0000; }