treehouse : what would you like to learn today?
Web Design Web Development iOS Development

Removing Dotted Outline

Last updated on:

a {
   outline: 0;
}

Be careful removing outline styles from links, as they are a usability feature. If you do, make sure to define clear focus styles.

If your problem is that the dotted outlines travel all the way to the left or right of the screen because they are floated, try setting the overflow to hidden.

View Comments

Comments

  1. elandy2009
    Permalink to comment#

    A note: The “outline” CSS property doesn’t work in IE6 and IE7.

  2. Permalink to comment#

    This works.

    a {
    outline-style: none;
    }

  3. *:focus { outline: 0; }

  4. Court Kizer

    Outline: 0 none; <– Use this for perfect outline kill, every…single…time

  5. It is important to remember that if you remove this outline, you should replace it with something else. I recommend using both the :focus and :hover pseudo-classes as a means of providing this important feedback to both mouse and keyboard-only users.

Leave a Comment

Use markdown or basic HTML and be nice.