Edward Potter
Edward Potter

Reputation: 3820

Getting rid of that damn image border in Firefox, not working

Ok, I've tried all 3 solutions, still not working, wondering if it is over written somewhere else, using Bootstrap 3.0. Seems so simple, yet driving me a bit bonkers.

  1. :focus { -moz-outline-style: none; }

  2. * { outline: none; }

3.

img {
    border:0;
    outline:none;
}

None of these solutions seem to be working.enter image description here

Upvotes: 0

Views: 60

Answers (1)

mokiSRB
mokiSRB

Reputation: 1162

in file bootstrap.min.css comment

a:focus {
  outline: thin dotted;
}

Upvotes: 1

Related Questions