dottet line around elemnt upon choosing

Discussion in 'CSS' started by thechasboi, Mar 14, 2007.

  1. #1
    Does any one know what that annoying dotted line is around say images for example after you click it. I would love to shut that off if all possible. Thanks for the reply.
     
    thechasboi, Mar 14, 2007 IP
  2. Clive

    Clive Web Developer

    Messages:
    4,507
    Likes Received:
    297
    Best Answers:
    0
    Trophy Points:
    250
    #2
    What you are talking about is visible in Firefox and not in IE browser if I'm guessing right.
    Not sure but I don't think you can get rid of that.
     
    Clive, Mar 14, 2007 IP
  3. kk5st

    kk5st Prominent Member

    Messages:
    3,497
    Likes Received:
    376
    Best Answers:
    29
    Trophy Points:
    335
    #3
    If you get it when you tab through your links, it's an accessibility feature to indicate which link has focus. You can get rid of it, but it would be a singularly Bad Idea®; it may even break the law in some jurisdictions if you don't replace it with something equally as visible.

    If you just must remove it,
    
    a:focus {
        outline: none;
        }
    Code (markup):
    cheers,

    gary
     
    kk5st, Mar 14, 2007 IP
  4. thechasboi

    thechasboi Guest

    Messages:
    65
    Likes Received:
    0
    Best Answers:
    0
    Trophy Points:
    0
    #4
    kk5st

    I do remember reading that somewhere. I will try that fix thanks so much for the info. Regards
     
    thechasboi, Mar 14, 2007 IP
  5. thechasboi

    thechasboi Guest

    Messages:
    65
    Likes Received:
    0
    Best Answers:
    0
    Trophy Points:
    0
    #5
    That did the trick. Thanks again for the reply.
     
    thechasboi, Mar 14, 2007 IP