What is the use of border-left-color property?

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

Comments or Responses

Login to post response