FireFox displays an ugly dotted border around links (all linked elements in fact):
You can easily prevent FireFox from displaying this border by adding the following CSS style sheet, or within the <style> tags on your page:
a:active { outline: none; }
a:focus { -moz-outline-style: none; }
This should not prevent your CSS from validating according to W3C’s standards.
