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!
5 comments:
Thanks for the solution. You should wrap your code in 'pre' tags to make it easier to copy, though.
Phew.. this was driving me crazy! Thanks for the help!
Thanks mate, I never even realized there was such a thing as an outline property. Who uses that ?
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!
i tried
* { outline:0; }
on firefox version 3.0.10 and it worked.
Post a Comment