Link contains the color white for all actions:
a.white-link:link,
a.white-link:visited,
a.white-link:hover,
a.white-link:active
{
color:#fff;
}
<a class="white-link" href="/">Test Link</a>
All links contain the color gray for all actions:
a:link, a:visited, a:hover, a:active
{
color:#ccc;
}
<a href="/">Test Link</a>
Some additional examples:
p.paragraph-class-name {font-size:18px;margin-top:25px;font-weight:200;}
#element-by-id {}
.parent-class.class-name {border:0px;border-radius:0px;background:#00a0df;color:white;}
.parent-class.class-name h2 {color:white;text-transform:none;margin-top:0px;margin-bottom:25px;}
.parent-class.class-name p {font-size:18px;}
.parent-class.class-name i {font-size:28px;margin-right:15px;margin-top:10px;}
a.register:link { color:#FFF; text-decoration:none; font-weight:normal; }
a.register:visited { color: #FFF; text-decoration:none; font-weight:normal; }
a.register:hover { color: #FFF; text-decoration:underline; font-weight:normal; }
a.register:active { color: #FFF; text-decoration:none; font-weight:normal; }