CSS - Reset all colors and change link color


/ Published in: CSS
Save to your folder(s)



Copy this code and paste it in your HTML
  1. * {
  2. color: black !important;
  3. background-color: white !important;
  4. background-image: none !important;
  5. }
  6.  
  7. a:link {
  8. font-weight: bold;
  9. text-decoration: underline;
  10. color: #06c;
  11. }

Report this snippet


Comments

RSS Icon Subscribe to comments

You need to login to post a comment.