avatar

Remove outline from links

November 25th, 2008 in JS / CSS / xHTML Jump to comments
I got really bored to see outlined links when they get clicked, so I decided to remove the outline. It's just a simple CSS rule.

  1. a{
  2. outline:none;
  3. }

However I didn't manage to remove the outlines from buttons. Any ideas how?

1 comment so far

  1. gravatar
    Horia January 8th, 2009 at 07:02:57
    :focus { outline:0 }

Post your comment