CSS3 Link Colour Transition


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

Use CSS3 to animate the colour of links.


Copy this code and paste it in your HTML
  1. a {
  2. -moz-transition: color .25s ease-in-out;
  3. -webkit-transition: color .25s ease-in-out;
  4. -o-transition: color .25s ease-in-out;
  5. -MS-transition: color .25s ease-in-out;
  6. transition: color .25s ease-in-out;
  7. }

Report this snippet


Comments

RSS Icon Subscribe to comments

You need to login to post a comment.