Sunday, June 24, 2007

Avoiding Firefox’s link border

Article Has Moved Here

5 comments:

Anonymous said...

Thanks for the solution. You should wrap your code in 'pre' tags to make it easier to copy, though.

Anonymous said...

Phew.. this was driving me crazy! Thanks for the help!

theShad0w said...

Thanks mate, I never even realized there was such a thing as an outline property. Who uses that ?

Anonymous said...

Hi!
I solved the outline problem with your code and it worked on links. However i stil have the same problem for an input type="submit". I tried:
1. input:active, input:focus {outline:0;}
2. :active, :focus {outline:0;}
3. input[type="submit"]:focus {
outline:0;
}
but it didn't work....inputs still display those dotted outlines.
PLEASE tell me you have the answer to my problem :)
Is there something that can be done to remove them?
Thanks in advance!

Anonymous said...

i tried

* { outline:0; }

on firefox version 3.0.10 and it worked.