How to remove under-lines on all links on page or all anchor tags?

 Posted by Vishalneeraj-24503 on 3/1/2015 | Category: CSS 3 Interview questions | Views: 1665 | Points: 40
Answer:

We have to write below CSS class:-
<style type = "text/css">

a
{
text-decoration:none;
}
</style>


Asked In: Many Interviews | Alert Moderator 

Comments or Responses

Login to post response