Answer: When we want to set any element or control Bottom border color,then we use border-bottom-color CSS property.It's an in-built CSS property.
Note:- Always declare the
border-style property before the border-bottom-color property.An element must have borders before you can change the color.
For Example:-
div
{
border-style:solid;
border-bottom-color:yellow;
}
Asked In: Many Interviews |
Alert Moderator