Get rid of dotted border from links

November 22, 2007 • 39 comments

We’ve all seen how Firefox will add a dotted border on any links are clicked. When coupled with the Phark technique, Firefox extends that dotted border to include your extremely indented text. However there are three different solutions to this:

  1. Getting rid of the dotted border completely
  2. Stopping the border from stretching
  3. Editing the Firefox default user style sheet to do solution 1 or two for all websites you visit

The first solution will essentially turn of the border completely leaving no outline

a {
    outline: none;
}

before:
long dotted border around image

After:
no dotted outline on image

The second solution will keep the border nice and tidy with your image.

a {
    overflow: hidden;
}

Before:
long dotted border around image

After:
Tidy dotted outline border

Lastly if you’re annoyed by the border as much as I am, there are two ways to perform either one of these solutions using the Firefox user style sheet.

But we’ll save that for the next entry.

Tags: , , ,

39 Responses to “Get rid of dotted border from links”

  1. December 7th, 2007 8:05 pm chocolaterain dude who sits next to you in JRs class :)

    stumbled upon again! how come I never stumbleupon my blog?!

  2. December 8th, 2007 2:50 am Swany

    wow, I’m so freaking excited… this is exactly what I was looking for a week ago.. i was stumbling, stumbling, stumbling and got distracted…I just landed on your page tonight… so thank you!

    Swany
    http://www.swany.cc
    http://www.swany.cc/TravelMap

  3. December 8th, 2007 4:16 am anna

    Indeed, the border is ugly. But with no border, people who go to links on pages using the tab key, now see nothing.

  4. December 8th, 2007 11:49 am Zaki

    Anna,

    Thats why you use method 2, or put an a:active or a:focus state on the image. That way a keyboard user will see a change on the links when using IE or Firefox.

    Thanks for your comments.

  5. December 9th, 2007 12:32 pm Arjan

    Be careful with removing the outline. For accessibility reasons these outlines are used, for example if you use tab when you browse by keyboard.

    A solution to make clear what link is active, you can apply a style to it by using the :focus state (like :hover).

  6. December 10th, 2007 2:37 am chocolaterain dude who sits next to you in JRs class :)

    Close to 8000 visits and yet only 6 comments, and two are mine… lame… :)
    just kidding man, that’s awesome. What’s the next blog gonna be about?

  7. December 10th, 2007 8:33 am Zaki

    Arjan, as I mentioned in the comments in this posting, when using -9999px for image replacement, the outline extends to the left to contain the entire element, however instead of doing outline:none you can do overflow:hidden and have the outline not extend all the way to the left. Also with a clear a:focus and a:active defined you can use outline:none and not have any accessibility issues. It is up to the developer to utilize all techniques together to create a well designed and easily accessible website.

  8. December 10th, 2007 11:12 am Arjan

    Sure you can disable the outline by using :active. But I meant applying a whole new style for the active state. You can, for example, use an background image with a kind of glow to highlight the usage of a tab. Of course there are way more creative solutions.

    What I forgot in my previous comment, is mentioning that using text-indent itself can be harmful. If the visitor has turned images off, there will be nothing to display. (Of course I know that not many people have CSS turned on, but images off… I just mention it.)

  9. December 10th, 2007 2:59 pm Edward Turtle

    Ahhh thanks, that’s a great help, cheers

  10. December 11th, 2007 10:51 am LouCypher

    From userstyles.org/forum/comments.php?DiscussionID=371:
    *|*:-moz-any-link:focus {
    outline-width: 0 !important;
    }

  11. December 12th, 2007 6:08 pm Tony Landis

    Great tip, thanks

  12. December 12th, 2007 10:40 pm XGhozt

    Wow, this is great! I didn’t even realize that was possible. I just assumed it was a firefox feature or something. I’m going to take advantage of this one!

    Thanks.

  13. January 22nd, 2008 8:13 pm Joe

    Urm…am I the only one this doesn’t work for?

    I haven’t got dashed borders happening to my links in firefox but instead Ive got single blue outlines appearing around my links and I applied the first technique shown and its still stayed the same.

    Any ideas?

  14. January 22nd, 2008 8:21 pm Joe

    Hey no worries, I found it somewhere else, just add into your html bit

    coolio hoolio ;)

  15. January 22nd, 2008 8:22 pm Joe

    didnt come out but…. border=”0″ after your image src bit of html

  16. March 2nd, 2008 7:02 pm Arencykneedly

    Hello there.
    Just found your site. Great job!
    I like it much.
    look here http://live.com

  17. June 2nd, 2008 8:06 pm james

    this post rules! I was about to just give up. Thanks!

  18. July 30th, 2008 4:00 pm Jane

    works perfectly, thanks for the big help

  19. August 9th, 2008 7:20 pm Alex Grogan

    I’m still laughing about whoever said, “people who go to links on pages using the tab key, ”

    I mean – WHO browses a page like that?

    Use a mouse.

  20. August 9th, 2008 11:34 pm Zaki

    People with disabilites such as low mobility. Thanks for dropping by.

  21. December 21st, 2008 9:35 am Geoserv

    STUMBLED!

    Excellent tip, will definitely use this.

  22. January 24th, 2009 3:35 am olek

    if you lost all hope try this in your linked css file:

    a{
    outline: none;
    border: none;
    }

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

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

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

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

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

  23. January 26th, 2009 2:51 am Kate

    Thanks a lot! I’ve been looking for this everywhere :D

  24. January 26th, 2009 1:41 pm Jeroen

    Thanks man! Looking all over the web. Great solution, really simple!

  25. February 21st, 2009 1:55 pm Sam

    thanks so much, this is great!

  26. March 17th, 2009 12:41 pm steve

    that code posted by olek did just the trick for me, so many thanks!!! I’ll go back through the other sites ive made and put those changes to them too. I just hated giving them to clients and hoping that they would view their site in IE…

  27. April 16th, 2009 12:42 am JAB_au

    Excellent tip there, used it on my blog so you get a stumble thumb up.

  28. April 27th, 2009 7:16 pm Top CSS tutorials | FAQPAL Blog

    [...] Get rid of dotted border from links [...]

  29. May 28th, 2009 12:53 am Corey

    I already knew how to do this, but I just had to comment on how beautiful your site is. Amazing choice of colors.

    Sorry to go off topic for a moment.

  30. June 12th, 2009 1:45 am aloy

    Very useful, thank you! I was already wondering how o get rid of those ugly outlines…

  31. September 14th, 2009 4:27 pm Sean

    Thanks for posting this. I found it quite useful. I read alot about Accessibility in the comments. Are there any decent 508 compliance validators that actually work?

  32. September 25th, 2009 9:08 am nos4a2

    Thx for the info,

    however , new to the CSS style.. no idea where and how to place this code…I have so far jsut created a simple website in photoshop/ dreamweaverCS3 and am looking at a way to remove the annoying border.

  33. October 11th, 2009 2:30 am Hugo

    Thank you.
    I was trying to find out the answer to this by trial and error in my css.
    I then did my first search on google for this problem.
    This was my search: ‘get rid of dotted border on active link’
    Your blog site here is ace

  34. October 22nd, 2009 2:04 pm Gangster76

    CommentsThis is awesome, Deb! ,

  35. December 8th, 2009 8:27 am tom

    Thanks you saved the day! Thumbs up! On stumbleupon and the real world!

  36. May 22nd, 2010 6:49 pm ProExtend

    Wow this fixed the issue regarding the display of those pesky borders. Now my question is how do I make the space between the 2 link images smaller or lessen it. I cant figure out a way to make the images get closer. They still have a spacing between them as if the dotted border were still active.

    I know this topic is a bit old but really helpful and I appreciate any help u can provide.

  37. [...] If you need visually selected focused elements, do not rely on browsers’ implementation. Just get rid of the active border and use your own highlighting [...]

  38. June 10th, 2010 4:25 pm ray

    rock on.
    tooo easy to think it out myself ;)

  39. July 9th, 2010 3:38 am Sean Wichert, Sr.

    Yes sir. ty very much, Haaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa… …aaalrighty then!

Your 2 cents: