Why to use border-bottom-color property in an HTML pages?

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

Comments or Responses

Login to post response