Show Output
<!DOCTYPE html> <html lang="en"> <head> <meta charset="utf-8"> <title>Removing Dotted Outlines Using CSS</title> <style> a, a:active, a:focus{ outline: none; /* Works in Firefox, Chrome, IE8 and above */ } </style> </head> <body> <div class="menu"> <a href="#">Home</a> | <a href="#">About Us</a> | <a href="#">Contact</a> </div> </body> </html>