What is the use of border-right-color property in HTML?

 Posted by vishalneeraj-24503 on 5/6/2014 | Category: ASP.NET Interview questions | Views: 1475 | Points: 40
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 

Comments or Responses

Login to post response