We Recommend

CSS: The Definitive Guide CSS: The Definitive Guide
Provides you with a comprehensive guide to CSS implementation, along with a thorough review of all aspects of CSS 2.1. Updated to cover Internet Explorer 7, Microsoft's vastly improved browser, this new edition includes content on positioning, text wrapping (nowrap), lists and generated content, table layout, user interface, paged media, and more.


Posted By

rolfthomas on 05/29/08


Tagged

css textmate link a line dottet


Versions (?)


Who likes this?

1 person has marked this snippet as a favorite

heinz1959


Disable Firefox Dotted Line around Links


Published in: CSS 


  1. a:focus {
  2. outline: none; /* Damit Firefox keinen aktiven Rand um Links zeigt */
  3. }

Report this snippet 

Comments

RSS Icon Subscribe to comments
Posted By: jonhenshaw on May 30, 2008

Just doing a wildcard will do it too: * { outline:none; }

You need to login to post a comment.