Answer: It's an in-built CSS property used for setting the color of the right border of any control.
Note:- Always declare the
border-style property before the border-right-color property.An element must have borders before you can change the color.
For Example:-
input[type="text"]
{
border-style:solid;
border-right-color:green;
}
Asked In: Many Interviews |
Alert Moderator