Answer: It's an in-built CSS property used for setting the color of the left border of any control.
Note:- Always declare the
border-style property before the border-left-color property.An element must have borders before you can change the color.
For Example:-
div
{
border-style:solid;
border-left-color:blue;
}
Asked In: Many Interviews |
Alert Moderator