Search
 
SCRIPT & CODE EXAMPLE
 
CODE EXAMPLE FOR CSS

css how to remove underline from visited sites

 
 
a:link {
  text-decoration: none;
}
a:visited {
  text-decoration: none;
}
a:hover {
  text-decoration: none;
}
a:active {
  text-decoration: none;
}
 
Source by blog.hubspot.com #
 
PREVIOUS NEXT
Tagged: #css #remove #underline #visited #sites
ADD COMMENT
Topic
Name
5+2 =