WeCodeThings Library
Library of code bits
Glossary    Contact Us
Need a web designer? visit WeCodeThings.Com for more details
Search  
   
Browse by Category

WeCodeThings Library .: CSS .: CSS Change hyperlink A Link Visited Active and Hover Styles Colors Syntax



CSS Change hyperlink A Link Visited Active and Hover Styles Colors Syntax

Standard syntax for setting up hyperlink styles in CSS.

  1. <style type="text/css">
  2.   A:link {
  3.   color:#FFF;
  4.   font-weight:bold;
  5.   text-decoration:none;
  6.   }
  7.   A:visited {
  8.    color:#FFF;
  9.    font-weight:bold;
  10.    text-decoration:none;
  11.   }
  12.   A:active {
  13.    color:#FFF;
  14.    font-weight:bold;
  15.   }
  16.   A:hover {
  17.    font-weight:bold;
  18.    text-decoration:underline;
  19.    color:#000
  20.   }
  21. </style>


How helpful was this article to you?

Related Articles

article Create Hyperlink to external or internal website in Flex 3 using LinkButton
The best way that I have found out to...

  4-9-2009    Views: 5245   
article how to change cursor to hand using javascript
The simplest way to change the cursor to a...

(No rating)  4-13-2009    Views: 782   
article Change Font | Text color based on winning number or percentage using cfif ColdFusion
I just wanted to change the font or text...

(No rating)  4-19-2009    Views: 875   

User Comments

Add Comment
No comments have been posted.




.: Powered by Lore .:Code by WeCodeThings Website Design and Development