switz
switz

Reputation: 25188

Remove blue selection bar around form

I know for links the css is

a:focus {
text-decorations: none;
-mozselectedsomethingorother: none;
}

or something like that, but is there a way to remove the blue border

http://cl.ly/1d20272p36180S3f1c36

Upvotes: 1

Views: 1081

Answers (2)

zod
zod

Reputation: 12417

text-decoration: none; 

not decorations

Upvotes: 0

wajiw
wajiw

Reputation: 12269

If you have an anchor wrapped around an image, this css should work:

a img { border:none; }
a:focus { outline: none; }

And....someone already answered in the comments :-)

Upvotes: 1

Related Questions