Don't like ads? PRO users don't see any ads ;-)
Guest

Untitled

By: a guest on Apr 29th, 2012  |  syntax: None  |  size: 0.42 KB  |  hits: 13  |  expires: Never
download  |  raw  |  embed  |  report abuse  |  print
Text below is selected. Please press Ctrl+C to copy to your clipboard. (⌘+C on Mac)
  1. Unable to style an anchor tag? Someone explain why?
  2. <a style="color:#6bc2ef;
  3.        
  4. <a  class="footA" href="http://www.designobvio.us/smartklubben/company">Company</a>
  5.        
  6. .footA:hover{color:#6bc2ef;}
  7.        
  8. #footer p a {
  9.     color: #FFFFFF;
  10. }
  11.        
  12. #footer a {
  13.     color: #fff;
  14. }
  15.  
  16. #footer a.footA {
  17.     color: #6bc2ef;
  18. }
  19.        
  20. a:hover .footA {
  21.     color: #06e;
  22. }
  23.        
  24. a.footA:hover {
  25.     color: #06e;
  26. }
  27.        
  28. #footer p a {color:#fff;}