Disable the Dotted Border Around Links
Posted in Cool Code Of The Day on October 31st, 2010 by mbrandt29Since the automatic setting for “outline” on anchors is “dotted”, you need to override this setting by inserting the following css:
- a {
- outline:0;
- }
This also needs to be done for any other elements that are acting as links [inputs].



